可创建注释节点, 并插入HTML文档:
var c=document.createComment("My personal comments");
document.body.appendChild(c);
输出结果:
运行一下 »<!--My personal comments-->
createComment() 方法可创建注释节点。
所有主要浏览器都支持 createComment() 方法
document.createComment(text)
参数 | 类型 | 描述 |
---|---|---|
text | String | 可选. 添加的注释文本。 |
类型 | 描述 |
---|---|
Comment object | 创建的注释节点 |
DOM 版本 | Core Level 1 Document Object |
---|