diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:14 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | c05efa8d7ae464235cf83d7c0956e42dc6974103 (patch) | |
tree | 6ea911b2f2010f63a026de6bb7a1a51e7690a7e1 /files/fr/web/api/node/haschildnodes/index.html | |
parent | 13a5e017558b248ee1647d4a5825f183b51f09ad (diff) | |
download | translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.gz translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.bz2 translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/api/node/haschildnodes/index.html')
-rw-r--r-- | files/fr/web/api/node/haschildnodes/index.html | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/files/fr/web/api/node/haschildnodes/index.html b/files/fr/web/api/node/haschildnodes/index.html deleted file mode 100644 index c14ad9836f..0000000000 --- a/files/fr/web/api/node/haschildnodes/index.html +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: element.hasChildNodes -slug: Web/API/Node/hasChildNodes -tags: - - API - - DOM - - Method - - NeedsSpecTable - - Node - - Reference -translation_of: Web/API/Node/hasChildNodes ---- -<p>{{APIRef("DOM")}}</p> - -<p>La méthode <code><strong>Node.hasChildNodes()</strong></code> renvoie un {{jsxref("Boolean")}} indiquant si le {{domxref("Node","noeud")}} actuel possède des <a href="/fr/docs/Web/API/Node/childNodes">nœuds enfants</a> ou non.</p> - -<h2 id="Syntax">Syntaxe</h2> - -<pre class="brush: js"><var>bool</var> = <var>node</var>.hasChildNodes();</pre> - -<h3 id="Return_value">Valeur de retour</h3> - -<p>Un {{jsxref("Boolean")}} qui est <code>true</code> si le nœud a des nœuds enfants, et <code>false</code> dans le cas contraire.</p> - -<h2 id="Example">Exemple</h2> - -<pre class="brush:js">let foo = document.getElementById('foo'); - -if (foo.hasChildNodes()) { - // Faire quelque chose avec 'foo.childNodes' -}</pre> - -<h2 id="Polyfill">Prothèse d'émulation</h2> - -<pre class="brush:js">(function(prototype) { - prototype.hasChildNodes = prototype.hasChildNodes || function() { - return !!this.firstChild; - } -})(Node.prototype);</pre> - -<p>Il y a différentes façons de déterminer si le noeud a un noeud enfant :</p> - -<ul> - <li><code>node.hasChildNodes()</code></li> - <li><code>node.firstChild != null</code> (ou simplement <code>node.firstChild</code>)</li> - <li><code>node.childNodes && node.childNodes.length</code> (ou <code>node.childNodes.length > 0</code>)</li> -</ul> - -<h2 id="Specifications">Spécification</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-haschildnodes", "Node: hasChildNodes")}} - </td> - <td>{{Spec2("DOM WHATWG")}}</td> - <td></td> - </tr> - </tbody> -</table> - -<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2> - -<p>{{Compat("api.Node.hasChildNodes")}}</p> - -<h2 id="See_also">Voir aussi</h2> - -<ul> - <li>{{domxref("Node.childNodes")}}</li> - <li>{{domxref("Node.hasAttributes")}}</li> -</ul> |