XML DOM childNodes 属性
❮ 文档对象
示例
以下代码片段将 "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 属性返回文档的子节点的 NodeList。
语法
documentObject.childNodes
提示和注意事项
提示:使用 NodeList 的 length 属性来确定节点列表中的节点数量。当你知道节点列表的长度时,你可以轻松地遍历它并提取你想要的值!
❮ 文档对象