XML DOM nodeValue 属性
❮ Node 节点对象
实例
以下代码片段将 "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
❮ Node 节点对象