XML DOM item() 方法
❮ NamedNodeMap 对象
示例
以下代码片段将 "books.xml" 加载到 xmlDoc 中,循环遍历 <book> 元素并打印 category 属性的值
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, att, xmlDoc, txt;
xmlDoc = xml.responseXML;
txt = "";
x = xmlDoc.getElementsByTagName('book');
for (i = 0; i < x.length; i++) {
att = x.item(i).attributes.getNamedItem("category");
txt += att.value + "<br>";
}
document.getElementById("demo").innerHTML = txt;
}
以上代码的输出将是
烹饪
儿童
网络
网络
自己尝试 »
定义和用法
item() 方法返回节点列表中指定索引处的节点。
语法
item(index)
参数 | 描述 |
---|---|
index | 索引 |
自己尝试演示
❮ NamedNodeMap 对象