aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/customevent/detail/index.html
blob: 0890ad04bb4690640e2ab8a0be344c9d8cf1285c (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
---
title: CustomEvent.detail
slug: Web/API/CustomEvent/detail
tags:
  - API
  - DOM
  - Propriétés
  - Évènement personnalisé
translation_of: Web/API/CustomEvent/detail
---
<p>{{APIRef("DOM")}}</p>

<p>Le <code><strong>detail</strong></code> de la propriété en lecture seule de l'interface {{domxref("CustomEvent")}} renvoie toutes les données transmises lors de l'initialisation de l'évènement.</p>

<p>{{AvailableInWorkers}}</p>

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

<pre class="syntaxbox"> let myDetail = <em>customEventInstance.detail</em>;</pre>

<h3 id="Valeur_retournée">Valeur retournée</h3>

<p>Toute donnée initialisée avec l'évènement.</p>

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

<pre class="brush: js">// ajoute un écouteur d'évènement approprié
obj.addEventListener("cat", function(e) { process(e.detail) });

// crée et distribue l'évènement
let event = new CustomEvent("cat", {
  detail: {
    hazcheeseburger: true
  }
});
obj.dispatchEvent(event);

// Retournera un objet contenant la propriété hazcheeseburger
let myDetail = <em>event.detail</em>;
</pre>

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

<table class="standard-table" style="height: 49px; width: 1000px;">
 <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-customeventinit-detail','detail')}}</td>
   <td>{{Spec2('DOM WHATWG')}}</td>
   <td>Définition initiale.</td>
  </tr>
 </tbody>
</table>

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



<p>{{Compat("api.CustomEvent.detail")}}</p>

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

<ul>
 <li>{{domxref("CustomEvent")}}</li>
</ul>

<p> </p>