blob: 5e16be2ecb16ea2fbcbfefd2c5e4ec96b2c4509b (
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
|
---
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>
|