我需要从特定节点检索属性本身, NOT 属性值。
例如对于对象2,属性是"操作" 不"更新"而对于Object3,属性为" name" 不" A51"。如果我想获取属性值,我会使用类似node2.getAttribute("operation")
但的内容,而不是我想要的内容
<Object1 class="second"/>
<Object2 operation="update"/>
<Object3 name="A51"/>
答案 0 :(得分:0)
我找到了方法。它非常简单,只需将.Attributes.Item(i).nodeName
添加到您的节点即可。 i
只是属性位置。在我的情况下,它将是:
node1.Attributes.Item(0).nodeName