aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/event/bubbles/index.html
blob: 6c9a6b68fc078db7f906bbf4a5696249305a82ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
title: Event.bubbles
slug: Web/API/Event/bubbles
tags:
  - API
  - DOM
  - Propagation
  - Propriétés
  - évènements
translation_of: Web/API/Event/bubbles
---
<p>{{ ApiRef("DOM") }}</p>

<p>Indique si l'événement donné se propage à travers le DOM ou non.</p>

<div class="note">
<p><strong>Note :</strong> Voir <a href="/fr/docs/Learn/JavaScript/Building_blocks/Events#Event_bubbling_and_capture">Propagation et capture des évènements</a> pour plus d'informations sur la propagation.</p>
</div>

<h2 id="Syntaxe">Syntaxe</h2>

<pre>event.bubbles</pre>

<h3 id="Valeur">Valeur</h3>

<p>Retourne un booléen dont la valeur est <code>true</code> (<em>vraie</em>) si l'événement se propage à travers le DOM.</p>

<h2 id="Syntax">Exemple</h2>

<pre class="brush: js">function goInput(e) {
  // vérifie la propagation et
  if (!e.bubbles) {
     // la lance si elle ne l'a pas été
     passItOn(e);
  }
  // déjà propagé
  doOutput(e)
}</pre>

<div class="note">
<p><strong>Note :</strong> Certains évènements seulement peuvent se propager. Ceux dont cette propriété est définie à  <code>true</code>. Vous pouvez utiliser cette propriété pour vérifier si un évènement est autorisé à se propager ou non.</p>
</div>

<h2 id="Specifications">Spécifications</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Spécification</th>
   <th scope="col">Statut</th>
   <th scope="col">Commentaire</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('DOM WHATWG', '#dom-event-bubbles', 'Event.bubbles')}}</td>
   <td>{{ Spec2('DOM WHATWG') }}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('DOM4', '#dom-event-bubbles', 'Event.bubbles')}}</td>
   <td>{{ Spec2('DOM4') }}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('DOM2 Events', '#Events-Event-canBubble', 'Event.bubbles')}}</td>
   <td>{{ Spec2('DOM2 Events') }}</td>
   <td>Définition initiale.</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>



<p>{{Compat("api.Event.bubbles")}}</p>

<h2 id="Voir_aussi">Voir aussi</h2>

<ul>
 <li><a href="/en-US/docs/Web/API/Event/stopPropagation">stopPropagation</a> pour empêcher la propagation</li>
</ul>