diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/api/node/normalize | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/web/api/node/normalize')
-rw-r--r-- | files/fr/web/api/node/normalize/index.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/files/fr/web/api/node/normalize/index.html b/files/fr/web/api/node/normalize/index.html new file mode 100644 index 0000000000..c58ba06945 --- /dev/null +++ b/files/fr/web/api/node/normalize/index.html @@ -0,0 +1,40 @@ +--- +title: element.normalize +slug: Web/API/Node/normalize +translation_of: Web/API/Node/normalize +--- +<p>{{ ApiRef("DOM") }}</p> + +<h2 id="R.C3.A9sum.C3.A9" name="R.C3.A9sum.C3.A9">Résumé</h2> + +<p>Place le nœud spécifié et tout son sous-arbre dans une forme « normale ». Dans un sous-arbre normalisé, aucun nœud texte n'est vide et il n'y a pas de nœuds texte adjacents.</p> + +<h2 id="Syntaxe" name="Syntaxe">Syntaxe</h2> + +<pre class="eval"><em>élément</em>.normalize(); +</pre> + +<h2 id="Exemple" name="Exemple">Exemple</h2> + +<pre class="brush:js line-numbers language-js">var conteneur = document.createElement("div"); +conteneur.appendChild( document.createTextNode("Partie 1 ") ); +conteneu.appendChild( document.createTextNode("Partie 2 ") ); + +// Ici, conteneur.childNodes.length === 2 +// conteneur.childNodes[0].textContent === "Partie 1 " +// conteneur.childNodes[1].textContent === "Partie 2 " + +conteneur.normalize(); + +// À présent, conteneur.childNodes.length === 1 +// conteneur.childNodes[0].textContent === "Partie 1 Partie 2 "</pre> + +<h2 id="Notes" name="Notes">Notes</h2> + +<h2 id="Sp.C3.A9cification" name="Sp.C3.A9cification">Spécification</h2> + +<ul> + <li><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-normalize">DOM Level 2 Core: Node.normalize (en)</a> <small>— <a class="external" href="http://www.yoyodesign.org/doc/w3c/dom2-core/core.html#ID-normalize">traduction en français</a> (non normative)</small></li> +</ul> + +<p>{{ languages( { "en": "en/DOM/element.normalize", "pl": "pl/DOM/element.normalize" } ) }}</p> |