XML DOM nodeValue 属性
❮ Attr 对象
例子
以下代码片段将 "books.xml" 加载到 xmlDoc 中,并显示 category 属性的节点名称、节点值和节点类型
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, xmlDoc, txt;
xmlDoc = xml.responseXML;
txt = "";
x = xmlDoc.getElementsByTagName('book');
for (i = 0; i < x.length; i++) {
txt += x.item(i).attributes[0].nodeName +
" = " +
x.item(i).attributes[0].nodeValue +
" (节点类型: " + x.item(i).attributes[0].nodeType + ")" + "<br>";
}
document.getElementById("demo").innerHTML = txt;
}
输出
category = cooking (节点类型: 2)
category = children (节点类型: 2)
category = web (节点类型: 2)
category = web (节点类型: 2)
尝试一下 »
定义和用法
nodeValue 属性根据节点类型设置或返回节点的值。
语法
attrObject.nodeValue
❮ Attr 对象