0
所以我想迭代xml文件中的奇數編號的節點。命名節點,其中x是從1輸入到32如何使用vbscript遍歷奇數編號的xml節點屬性?
Option Explicit
Dim xmlDoc, i, colNodes, objNode
Set xmlDoc = _
CreateObject("Microsoft.XMLDOM")
xmlDoc.Async = "False"
xmlDoc.Load("C:\Scripts\_setup.xml")
Set colNodes=xmlDoc.selectNodes("//input")
For Each objNode in colNodes
objNode.selectSingleNode("off_text").text = "me!"
objNode.selectSingleNode("on_text").text = "you!"
End If
Next
xmlDoc.Save "C:\Scripts\_setup.xml"
具有屬性的節點名稱在xml中輸入id ='x',其中x是介於1和32之間的值 –