blob: ebf87930af8d974de3f58a60158e6b725bd87f2f (
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
|
---
title: TreeWalker.nextSibling()
slug: Web/API/TreeWalker/nextSibling
tags:
- API
- Arborescence
- DOM
- Méthodes
- Noeuds
translation_of: Web/API/TreeWalker/nextSibling
---
<p>{{ APIRef("DOM") }}</p>
<p>La méthode <strong><code>TreeWalker.nextSibling()</code></strong> déplace le {{domxref("Node")}} courant vers son frère suivant, le cas échéant, et renvoie le frère trouvé. Si aucun noeud frère n'est trouvé, elle renvoie <code>null</code> et le noeud courant reste inchangé.</p>
<h2 id="Syntax">Syntaxe</h2>
<pre class="syntaxbox"><em>node</em> = <em>treeWalker</em>.nextSibling();
</pre>
<h2 id="Example">Exemple</h2>
<pre class="brush: js">var treeWalker = document.createTreeWalker(
document.body,
NodeFilter.SHOW_ELEMENT,
{ acceptNode: function(node) { return NodeFilter.FILTER_ACCEPT; } },
false
);
treeWalker.firstChild();
var node = treeWalker.nextSibling(); // renvoie null si le premier enfant de l'élément racine n'a pas de frère
</pre>
<h2 id="Specification">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-treewalker-nextsibling', 'TreeWalker.nextSibling')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td>Pas de changement de {{SpecName('DOM2 Traversal_Range')}}</td>
</tr>
<tr>
<td>{{SpecName('DOM2 Traversal_Range', 'traversal.html#Traversal-TreeWalker-nextSibling', 'TreeWalker.nextSibling')}}</td>
<td>{{Spec2('DOM2 Traversal_Range')}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.TreeWalker.nextSibling")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>L'interface {{domxref("TreeWalker")}} à laquelle elle appartient.</li>
</ul>
|