diff options
Diffstat (limited to 'files/fr/web/api/document/createcomment/index.md')
-rw-r--r-- | files/fr/web/api/document/createcomment/index.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/files/fr/web/api/document/createcomment/index.md b/files/fr/web/api/document/createcomment/index.md new file mode 100644 index 0000000000..5e16be2ecb --- /dev/null +++ b/files/fr/web/api/document/createcomment/index.md @@ -0,0 +1,41 @@ +--- +title: document.createComment +slug: Web/API/Document/createComment +tags: + - API + - DOM + - Méthodes + - Reference +translation_of: Web/API/Document/createComment +--- +<div>{{APIRef("DOM")}}</div> + +<p><code>createComment()</code> crée et retourne un nouveau noeud de type commentaire.</p> + +<h2 id="Syntax">Syntaxe</h2> + +<pre class="syntaxbox"><em>CommentNode</em> = document.createComment(data) +</pre> + +<h3 id="Parameters">Paramètres</h3> + +<dl> + <dt><code>data</code></dt> + <dd>Une chaîne de caractères représentant le contenu du commentaire.</dd> +</dl> + +<h2 id="Example">Exemple</h2> + +<pre class="brush:js">var docu = new DOMParser().parseFromString('<xml></xml>', "application/xml"); +var comment = docu.createComment('Voici un commentaire pas très bien caché'); + +docu.getElementsByTagName('xml')[0].appendChild(comment); + +alert(new XMLSerializer().serializeToString(docu)); +// Affiche: <xml><!--Voici un commentaire pas très bien caché--></xml></pre> + +<h2 id="Spécification">Spécification</h2> + +<ul> + <li><a href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-createComment">createComment</a></li> +</ul> |