diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/document/createcomment | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/document/createcomment')
-rw-r--r-- | files/fr/web/api/document/createcomment/index.md | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/files/fr/web/api/document/createcomment/index.md b/files/fr/web/api/document/createcomment/index.md index 5e16be2ecb..d2553c1327 100644 --- a/files/fr/web/api/document/createcomment/index.md +++ b/files/fr/web/api/document/createcomment/index.md @@ -8,34 +8,31 @@ tags: - Reference translation_of: Web/API/Document/createComment --- -<div>{{APIRef("DOM")}}</div> +{{APIRef("DOM")}} -<p><code>createComment()</code> crée et retourne un nouveau noeud de type commentaire.</p> +`createComment()` crée et retourne un nouveau noeud de type commentaire. -<h2 id="Syntax">Syntaxe</h2> +## Syntaxe -<pre class="syntaxbox"><em>CommentNode</em> = document.createComment(data) -</pre> + CommentNode = document.createComment(data) -<h3 id="Parameters">Paramètres</h3> +### Paramètres -<dl> - <dt><code>data</code></dt> - <dd>Une chaîne de caractères représentant le contenu du commentaire.</dd> -</dl> +- `data` + - : Une chaîne de caractères représentant le contenu du commentaire. -<h2 id="Example">Exemple</h2> +## Exemple -<pre class="brush:js">var docu = new DOMParser().parseFromString('<xml></xml>', "application/xml"); +```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> +// Affiche: <xml><!--Voici un commentaire pas très bien caché--></xml> +``` -<h2 id="Spécification">Spécification</h2> +## Spécification -<ul> - <li><a href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-createComment">createComment</a></li> -</ul> +- [createComment](http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-createComment) |