我一直在尝试从 XML 中获取不同的属性值:dim i,xmlOx,arr(100) "xmlOx" has following xml structure
<root>
<a x="Animal" y="Bird"/>
<a x="Animal" y="Bird"/>
<a x="Country" y="Bird"/>
<a x="Animal" y="Bird"/>
</root>
ASP:
for i=0 xmlOx.selectNodes("a").length-1
arr(i)=xmlOx(i).selectNodes("a").getAttribute("x")
next
就像,这里ve to get "x" attribute values but I don
需要重复。然后我需要将值添加到 vbscript 中的数组中。
请有人告诉我我们是怎么做的?