XML DOM childNodes 属性
❮ 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 x, i, xmlDoc, txt;
xmlDoc = xml.responseXML;
txt = "";
x = xmlDoc.childNodes;
for (i = 0; i < x.length; i++) {
txt += "Nodename: " + x[i].nodeName
+
" (nodetype: " + x[i].nodeType
+ ")";
}
document.getElementById("demo").innerHTML
= txt;
}
上述代码的输出为:
Nodename: bookstore (nodetype: 1)
IE9 前的输出:
Nodename: xml (nodetype: 7)
Nodename: bookstore (nodetype: 1)
亲自试一试 »
定义和用法
childNodes 属性返回文档的子节点的节点列表。
语法
documentObject.childNodes
提示和注释
提示: 请使用 NodeList 的 length 属性来测定节点列表中的节点数目。在您已知晓节点列表的长度后,就能够轻易地循环遍历此节点,并提取您需要的值!
❮ Document 文档对象