XML DOM appendData() 方法
❮ Comment 对象
实例
以下代码片段将"books_comment.xml" 加载到 xmlDoc 中,并将文本附加到第一个comment元素:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
myFunction(this);
}
};
xhttp.open("GET",
"books_comment.xml", true);
xhttp.send();
function myFunction(xml) {
var x, i,
xmlDoc, txt;
xmlDoc = xml.responseXML;
txt = "";
x = xmlDoc.getElementsByTagName("book")[0].childNodes;
for (i = 0; i < x.length; i++) {
// Process only
comment nodes
if (x[i].nodeType
== 8) {
x[i].appendData(" Special Offer");
txt += x[i].data + "<br>";
}
}
document.getElementById("demo").innerHTML = txt;
}
输出:
125 Simple and Delicious Recipes (Hardcover) Special Offer
亲自试一试 »
在本例中,我们使用一段循环和 if 语句来执行只针对 comment 节点的处理。comment 节点的节点类型是 8。
定义和用法
appendData() 方法把指定文本添加到注释节点所包含文本的末端。
语法
commentNode.appedData(string)
参数 | 描述 |
---|---|
string | 必需。 要附加到 comment 节点的字符串。 |
❮ Comment 对象