runoops.com

XML DOM createComment() 方法

XML DOM – Document 对象

定义和用法

createComment() 方法创建注释节点。

该方法返回 Comment 对象。

语法

createComment(data)

参数描述
data字符串,这个字符串为节点规定数据。

实例

下面的代码片段使用 loadXMLDoc() 把 "books.xml" 载入 xmlDoc 中,并把注释节点添加到 <book> 元素:

xmlDoc=loadXMLDoc("books.xml");
 
x=xmlDoc.getElementsByTagName('book');
 
for (i=0;i<x.length;i++)
{
  newComment=xmlDoc.createComment("Revised April 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>");
}

XML DOM – Document 对象