XML DOM hasAttribute() 方法
Element 对象
定义和用法
hasAttribute() 方法在当前元素节点拥有匹配指定名称的属性时返回 TRUE,否则返回 FALSE。
语法
hasAttribute(name)
参数 | 描述 |
---|---|
name | 必需。规定要查找的属性。 |
实例
实例
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName("book")[0];
document.write(x.hasAttribute("category"));
x=xmlDoc.getElementsByTagName("book")[0];
document.write(x.hasAttribute("category"));
输出:
true
运行代码 »
Element 对象其他扩展