XML DOM nodeValue 属性
❮ Document 文档对象
实例
以下代码片段将"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 属性根据节点的类型设置或返回节点的值。
语法
documentObject.nodeValue
❮ Document 文档对象