XML DOM nodeName 属性


Attr 对象参考手册 Attr 对象

定义和用法

nodeName 属性返回节点的名称,根据其类型。

语法

attrObject.nodeName

实例

实例

xmlDoc=loadXMLDoc("books.xml"); x=xmlDoc.getElementsByTagName('book'); for(i=0;i<x.length;i++) { document.write(x.item(i).attributes[0].nodeName); document.write(" = "); document.write(x.item(i).attributes[0].nodeValue); document.write(" (nodetype: " + x.item(i).attributes[0].nodeType + ")"); document.write("<br>"); }

输出:

category = COOKING (nodetype: 2)
category = CHILDREN (nodetype: 2)
category = WEB (nodetype: 2)
category = WEB (nodetype: 2)

运行代码 »

运行代码 Demos

显示属性的 nodeName、nodeValue 和 nodeType


Attr 对象参考手册 Attr 对象其他扩展