XML DOM hasAttributes() 方法

Node 对象参考手册

定义和用法

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

语法:

  1. nodeObject.hasAttributes()

实例

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

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

  1. xmlDoc=loadXMLDoc("books.xml");
  2. var x=xmlDoc.getElementsByTagName('book')[0];
  3.  
  4. document.write(x.hasAttributes());

输出:

  1. true

Node 对象参考手册