XML DOM createComment() 方法
XML DOM Document 对象的 createComment() 方法创建注释节点
该方法返回 Comment 对象
语法
createComment(data)
参数
参数 | 描述 |
---|---|
data | 字符串,这个字符串为节点规定数据 |
范例
下面的范例把注释节点添加到 <book> 元素
xmlDoc=loadXMLDoc("/static/media/dom/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>"); }