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;
}
上述代码的输出为:
cooking
children
web
web
亲自试一试 »
定义和用法
item() 方法返回节点列表中指定索引处的节点。
语法
item(index)
参数 | 描述 |
---|---|
index | 索引号 |
亲自试一试演示代码
❮ NamedNodeMap 对象