XML DOM isId 属性
❮ Attr 对象
示例
以下代码片段将 "books.xml" 加载到 xmlDoc 中,并返回 category 属性是否为 <book> 元素的 ID 属性。
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.getElementsByTagName('book');
for(i = 0; i < x.length; i++) {
txt += x.item(i).attributes[0].isId + "<br>";
}
document.getElementById("demo").innerHTML = txt;
}
尝试一下 »
定义和用法
isId 属性如果属性是 ID 类型(例如,包含其所有者元素的标识符)则返回 true,否则返回 false。
语法
attrObject.isId
❮ Attr 对象