XML DOM hasAttributes() 方法

Node 对象参考手册

定义和用法

hasAttributes() 方法会在某节点用于任何属性时返回 true,否则返回 false。

语法:

nodeObject.hasAttributes()

实例

在所有的例子中,我们将使用 XML 文件 books.xml,以及 JavaScript 函数 loadXMLDoc()

下面的代码片段可返回是否首个 <book> 元素用于任何的属性:

xmlDoc=loadXMLDoc("books.xml");
var x=xmlDoc.getElementsByTagName('book')[0];

document.write(x.hasAttributes());

输出:

true

Node 对象参考手册