aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/domtokenlist/length/index.html
blob: 020d7bd7f6b1e95b248625464d724d0c769b343e (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
---
title: DOMTokenList.length
slug: Web/API/DOMTokenList/length
tags:
  - API
  - DOM
  - Listes
  - Longueur
  - Propriétés
translation_of: Web/API/DOMTokenList/length
---
<p>{{APIRef("DOM")}}</p>

<p>La propriété en lecture seule <code><strong>length</strong></code> (<em>longueur</em>) de l'interface {{domxref("DOMTokenList")}} est un <code>integer</code> (<em>entier</em>) représentant le nombre d'objets stockés dans la liste.</p>

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

<pre class="syntaxbox">tokenList.length;</pre>

<h3 id="Value">Value</h3>

<p>Un <code>integer</code> (<em>entier</em>).</p>

<h2 id="Exemples">Exemples</h2>

<p>Dans l'exemple suivant, nous récupérons la liste des classes définies dans un élément {{htmlelement("span")}} en tant que <code>DOMTokenList</code> en utilisant {{domxref("Element.classList")}}, puis écrivons la longueur (<em>length</em>) de la liste dans le {{domxref("Node.textContent")}} du <code>&lt;span&gt;</code>.</p>

<p>D'abord le HTML:</p>

<pre class="brush: html">&lt;span class="a b c"&gt;&lt;/span&gt;</pre>

<p>Maintenant le JavaScript:</p>

<pre class="brush: js">var span = document.querySelector("span");
var classes = span.classList;
var length = classes.length;

span.textContent = 'classList length = ' + length;
</pre>

<p>La sortie ressemble à ceci :</p>

<p>{{ EmbedLiveSample('Examples', '100%', 60) }}</p>

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

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Spécification</th>
   <th scope="col">Statut</th>
   <th scope="col">Commentaire</th>
  </tr>
  <tr>
   <td>{{SpecName('DOM WHATWG','#dom-domtokenlist-length','length')}}</td>
   <td>{{Spec2('DOM WHATWG')}}</td>
   <td>Définition initiale</td>
  </tr>
 </tbody>
</table>

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

<div>{{Compat("api.DOMTokenList.length")}}</div>

<div id="compat-desktop"> </div>

<div id="compat-mobile"> </div>