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 =
"节点名称: " + xmlDoc.nodeName +
(" (值: " + xmlDoc.childNodes[0].nodeValue) + ")";
}
上述代码的输出将是
节点名称: #document (值: null)
试一试 »
定义和用法
nodeValue 属性根据节点类型设置或返回节点的值。
语法
documentObject.nodeValue
❮ 文档对象