blob: a40125b5c1f4ad7bc13ea01cad5ced4f6bc93dc8 (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
---
title: Node.compareDocumentPosition()
slug: Web/API/Node/compareDocumentPosition
tags:
- API
- Arborescence
- DOM
- Méthodes
- Noeuds
- Position
translation_of: Web/API/Node/compareDocumentPosition
---
<div>{{APIRef("DOM")}}</div>
<p>La méthode <code><strong>Node.compareDocumentPosition()</strong></code>compare la position du noeud courant par rapport à un autre noeud dans tout autre document.</p>
<p>La valeur retournée est un masque de bits avec les valeurs suivantes :</p>
<table>
<thead>
<tr>
<th scope="col">Nom</th>
<th scope="col">Valeur</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>DOCUMENT_POSITION_DISCONNECTED</code></td>
<td>1</td>
</tr>
<tr>
<td><code>DOCUMENT_POSITION_PRECEDING</code></td>
<td>2</td>
</tr>
<tr>
<td><code>DOCUMENT_POSITION_FOLLOWING</code></td>
<td>4</td>
</tr>
<tr>
<td><code>DOCUMENT_POSITION_CONTAINS</code></td>
<td>8</td>
</tr>
<tr>
<td><code>DOCUMENT_POSITION_CONTAINED_BY</code></td>
<td>16</td>
</tr>
<tr>
<td><code>DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC</code></td>
<td>32</td>
</tr>
</tbody>
</table>
<h2 id="Syntax">Syntaxe</h2>
<pre class="syntaxbox"><em>node</em>.compareDocumentPosition( <em>otherNode</em> )
</pre>
<h2 id="Example">Exemple</h2>
<pre class="brush:js">var head = document.getElementsByTagName('head').item(0);
if (head.compareDocumentPosition(document.body) & Node.DOCUMENT_POSITION_FOLLOWING) {
console.log("well-formed document");
} else {
console.log("<head> is not before <body>");
}
</pre>
<div class="note">
<p><strong>Note :</strong> Parce que le résultat renvoyé par<em> </em><code>compareDocumentPosition</code> est un masque de bits, des <a href="/fr/docs/Web/JavaScript/Reference/Op%C3%A9rateurs/Op%C3%A9rateurs_binaires">opérateurs binaires</a> doivent être utilisés pour des résultats significatifs.</p>
</div>
<div class="note">
<p><strong>Note :</strong> La première instruction utilise l' <code>item(0)</code> de la méthode <a href="/en-US/docs/Web/API/NodeList/item">NodeList</a> , qui est l'équivalent de <code>getElementsByTagName('head')[0].</code></p>
</div>
<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-node-comparedocumentposition','Node.compareDocumentPosition()')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('DOM3 Core','core.html#Node3-compareDocumentPosition','Node.compareDocumentPosition()')}}</td>
<td>{{Spec2('DOM3 Core')}}</td>
<td>Définition initiale</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Node.compareDocumentPosition")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li><code><a href="/fr/docs/Web/API/Node/contains">Node.contains</a></code></li>
</ul>
|