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