XML DOM attributes 属性
❮ Element 元素对象
实例 1
下面的代码片段将"books.xml"加载到 xmlDoc 中,并获取"books.xml"中第一个<title>元素中的属性数:
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 xmlDoc = xml.responseXML;
var x =
xmlDoc.getElementsByTagName("book")[0].attributes;
document.getElementById("demo").innerHTML =
x.length;
}
上述代码的输出为:
1
亲自试一试 »
定义和用法
attributes 属性返回包含被选节点属性的 NamedNodeMap。
如果被选节点不是元素,则该属性返回 NULL。
语法
elementNode.attributes
提示和注释
提示: 此属性仅适用于元素节点。
实例 2
下面的代码片段将"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
亲自试一试 »
❮ Element 元素对象