XML DOM documentElement 属性
❮ Document 文档对象
实例
以下代码片段将"books.xml" 加载到 xmlDoc 中,并显示xml文档的位置:
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;
var x =
xmlDoc.documentElement;
document.getElementById("demo").innerHTML
=
"Nodename: " + x.nodeName + "<br>" +
"Nodevalue: " + x.nodeValue + "<br>" +
"Nodetype: " +
x.nodeType;
}
输出:
Nodename: bookstore
Nodevalue: null
Nodetype: 1
亲自试一试 »
定义和用法
documentElement 属性返回文档的根节点。
语法
documentObject.documentElement
❮ Document 文档对象