XML DOM createComment() 方法
❮ 文档对象
示例
以下代码片段将 "books.xml" 加载到 xmlDoc 中,并在 <book> 元素中添加一个注释节点
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET", "books.xml", true);
xhttp.send();
function myFunction(xml) {
var x, i, newComment, xmlDoc, txt;
xmlDoc = xml.responseXML;
txt = "";
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++) {
txt += x[i].getElementsByTagName("title")[0].childNodes[0].nodeValue +
" - " +
x[i].lastChild.nodeValue + "<br>";
}
document.getElementById("demo").innerHTML = txt;
}
上面代码的输出将是
Everyday Italian - Revised April 2008
Harry Potter - Revised April 2008
XQuery Kick Start - Revised April 2008
Learning XML - Revised April 2008
自己尝试 »
定义和用法
createComment() 方法创建一个注释节点。
此方法返回一个 Comment 对象。
语法
createComment(data)
参数 | 描述 |
---|---|
data | 指定节点数据的字符串 |
❮ 文档对象