XML DOM childNodes 属性
❮ Node 节点对象
实例
以下代码片段将"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 属性可返回指定节点的子节点的节点列表。
提示: 请使用 length 属性来计算一个节点列表中节点的数目。当你已获悉节点列表的长度后,您就可以轻松地循环遍历此列表,并提取您所需要的值!
浏览器支持
所有主要浏览器都支持 childNodes 属性。
语法
nodeObject.childNodes
技术细节
返回值: | 指定节点的子节点的节点列表 |
---|---|
DOM 版本 | Core Level 1 |
亲自试一试演示代码
❮ Node 节点对象