当前位置: 代码迷 >> ASP >> Xml attributes 有关问题
  详细解决方案

Xml attributes 有关问题

热度:287   发布时间:2012-02-09 18:22:27.0
Xml attributes 问题
XML的节点有attributes属性

我现在想分析一个未知XML文件
<?xml   version= "1.0 "?>
<Xml>
<A   abc= "aaa "   abe= "bbb "/>
</Xml>

只知道有一个节点A,他的属性都是未知的(属性名也未知)
不知道有没有一个方法可以遍历A的属性,使我能获得类似Node.nodeName和Node.nodeValue的方法属性

------解决方案--------------------
Set atts = Node.attributes
For i = 0 To arrs.length-1
Response.Write atts(i).name & ": " atts(i).value & " <br> "
Next
------解决方案--------------------
set nodes = root.getElementsByTagName( 'a ')
for i = 0 to nodes.length - 1
set atts = nodes.Item(i).attributes
for j = 0 to atts.length - 1
response.write atts.Item(j).nodeName & " = " & atts.Item(j).nodeValue
next
next
  相关解决方案