blob: d2553c13279cf8f3c2646b65ac780d425da1250e (
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
|
---
title: document.createComment
slug: Web/API/Document/createComment
tags:
- API
- DOM
- Méthodes
- Reference
translation_of: Web/API/Document/createComment
---
{{APIRef("DOM")}}
`createComment()` crée et retourne un nouveau noeud de type commentaire.
## Syntaxe
CommentNode = document.createComment(data)
### Paramètres
- `data`
- : Une chaîne de caractères représentant le contenu du commentaire.
## Exemple
```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>
```
## Spécification
- [createComment](http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-createComment)
|