Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

document.createComment

概要

createComment() は新たにコメントノードを作成し、返します。

構文

CommentNode = document.createComment(data)

引数

data
コメントに含められる文字列データ

var docu = new DOMParser().parseFromString('<xml></xml>',  "application/xml");
var comment = docu.createComment('This is a not-so-secret comment in your document');

docu.getElementsByTagName('xml')[0].appendChild(comment);

alert(new XMLSerializer().serializeToString(docu));
// 次の文字列が表示されます: <xml><!--This is a not-so-secret comment in your document--></xml>

注記

  • このメソッドに渡すパラメータの一部に "--" シーケンスが含まれた場合、例外 NS_ERROR_DOM_INVALID_CHARACTER_ERR がスローされます。ユーザの入力データをパラメータとして渡す場合は、このシーケンスが含まれる可能性を考慮し、パラメータを事前にエスケープするか、或いは例外を catch してからの別の処理が必要でしょう。

仕様書

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, jsx, ethertank
 最終更新者: jsx,