blob: e5906fbf28a56783f0a9febab7c9bbfaac25f610 (
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
|
---
title: Node.contains
slug: Web/API/Node/contains
tags:
- API
- DOM
- Filiation
- Méthodes
- Noeuds
translation_of: Web/API/Node/contains
---
<div>{{APIRef("DOM")}}</div>
<div>La méthode <strong><code>Node.contains()</code></strong> renvoie une valeur {{jsxref("Boolean")}} (<em>booléenne</em>) indiquant si un nœud est un descendant d'un nœud donné, c'est-à-dire le nœud lui-même, l'un de ses enfants directs ({{domxref("Node.childNodes", "childNodes")}}), l'un des enfants directs des enfants, et ainsi de suite.</div>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox">node.contains( otherNode )
</pre>
<h2 id="Example">Exemple</h2>
<p>Cette fonction vérifie si un élément est dans le corps de la page. Comme <code>contains</code> est inclusif, déterminer si le corps est contenu en lui-même n'est pas le but de <code>isInPage,</code> donc ce cas renvoie <code>false</code>.</p>
<pre class="brush:js">function isInPage(node) {
return (node === document.body) ? false : document.body.contains(node);
}</pre>
<h2 id="Spécifications">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-node-contains", "Node.contains()")}}</td>
<td>{{Spec2("DOM WHATWG")}}</td>
<td>Définition initiale</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Node.contains")}}</p>
<h2 id="See_also">Voir aussi</h2>
<ul>
<li>{{domxref("Node.compareDocumentPosition")}}</li>
<li>{{domxref("Node.hasChildNodes")}}</li>
</ul>
|