XML DOM hasAttributes() 方法
XML DOM Element 对象的 hasAttributes() 方法在当前元素节点拥有属性时返回 TRUE,否则返回 FALSE
语法
hasAttributes()
范例
下面的范例检查返回第一个 <book> 元素是否拥有属性
xmlDoc=loadXMLDoc("/static/media/dom/books.xml"); x=xmlDoc.getElementsByTagName('book')[0]; document.write(x.hasAttributes());