Document: createComment() 方法

createComment() 创建一个新的注释节点,并返回它。

语法

js
createComment(data)

参数

data

包含要添加到注释中的数据的字符串。

返回值

一个新的 Comment 对象。

示例

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

docu.querySelector("xml").appendChild(comment);

console.log(new XMLSerializer().serializeToString(docu));
// Displays: <xml><!--This is a not-so-secret comment in your document--></xml>

规范

规范
DOM 标准
# ref-for-dom-document-createcomment①

浏览器兼容性

BCD 表格仅在浏览器中加载