Element 对象
定义和用法
getAttributeNode() 方法从当前元素中通过名称取得属性节点。
语法
elementNode.getAttributeNode(name)
参数 | 描述 |
---|---|
name | 必需。规定要获取的属性节点。 |
实例
下面的代码片段使用 loadXMLDoc() 把 "books.xml" 载入 xmlDoc 中,并从所有的 <book> 元素中取得 "category" 属性:
实例
xmlDoc=loadXMLDoc("books.xml"); x=xmlDoc.getElementsByTagName('book'); for(i=0;i<x.length;i++) { attnode=x.item(i).getAttributeNode("category"); document.write(attnode.name); document.write(" = "); document.write(attnode.value); document.write("<br>"); }
输出:
category = COOKING category = CHILDREN category = WEB category = WEB
Element 对象