XML DOM nodeValue 属性
❮ 节点对象
示例
以下代码片段将 "books.xml" 加载到 xmlDoc 中,并显示根节点的节点名称和节点值
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 xmlDoc = xml.responseXML;
document.getElementById("demo").innerHTML =
"Nodename: " + xmlDoc.nodeName +
(" (value: " + xmlDoc.childNodes[0].nodeValue) + ")";
}
上述代码的输出将是
Nodename: #document (value: null)
自己尝试 »
定义和用法
nodeValue 属性根据节点的类型设置或返回节点的值。
语法
nodeObject.nodeValue
❮ 节点对象