最新的Web开发教程
 

HTML DOM createComment() Method

<文档对象

创建一个注释节点,并将其插入到HTML文档:

var c = document.createComment("My personal comments");
document.body.appendChild(c);

其结果将是:

<!--My personal comments-->
试一试»

定义和用法

所述createComment()方法创建具有指定文本注释节点。


浏览器支持

方法
createComment()

句法

document. createComment( text )

参数值

参数 类型 描述
text String 可选的。 你想成为您的评论文字,在注释对象

技术细节

返回值: 评对象,表示创建的注释节点
DOM版本 核心1级文档对象

<文档对象