XML DOM - Comment 对象
Comment 对象表示文档中注释节点的内容。
实例
在下面的例子中,我们会使用 XML 文件 books_comment.xml,以及 JavaScript 函数 loadXMLDoc()。
createComment() - 创建一个注释节点
<html>
<head>
<script type="text/javascript" src="/example/xdom/loadxmldoc.js"></script>
</head>
<body>
<script type="text/javascript">
xmlDoc=loadXMLDoc("/example/xdom/books.xml");
x=xmlDoc.getElementsByTagName('book');
for (i=0;i<x.length;i++)
{
newComment=xmlDoc.createComment("Revised March 2008");
x[i].appendChild(newComment);
}
for (i=0;i<x.length;i++)
{
document.write(x[i].getElementsByTagName("title")[0].childNodes[0].nodeValue);
document.write(" - ");
document.write(x[i].lastChild.nodeValue);
document.write("<br />");
}
</script>
</body>
</html>
Comment 对象
Comment 对象表示文档中注释节点的内容。
Comment 节点表示 HTML 或 XML 文档中的注释。
使用由 CharacterData 接口继承的 data 属性,或使用由 Node 接口继承的 nodeValue 属性,可以访问注释的内容。(即 <!— 和 —> 之间的文本)。使用由 CharacterData 接口继承的各种方法可以操作注释的内容。
使用 Document.createComment() 来创建一个注释对象。
Comment 对象属性
属性 | 描述 | IE | F | O | W3C |
---|---|---|---|---|---|
data | 可设置或返回此节点的文本。 | 6 | 1 | 9 | Yes |
length | 可返回此节点的文本的长度。 | 6 | 1 | 9 | Yes |
Comment 对象方法
方法 | 描述 | IE | F | O | W3C |
---|---|---|---|---|---|
appendData() | 向节点追加数据。 | 6 | 1 | 9 | Yes |
deleteData() | 从节点删除数据。 | 6 | 1 | 9 | Yes |
insertData() | 向节点中插入数据。 | 6 | 1 | 9 | Yes |
replaceData() | 替换节点中的数据。 | 6 | 1 | 9 | Yes |
substringData() | 从节点中提取数据。 | 6 | 1 | 9 | Yes |
相关页面
XML DOM 参考手册:CharacterData 对象