我知道如何选择特定属性具有特定值的节点。例如,我知道如何为属性strID
选择值为id
的节点“人员”节点;
Set oDOM = Server.CreateObject("MSXML2.DomDocument")
oDOM.loadXML strXML
Set oNodes = oDOM.selectNodes("/people/person[@id='" & strID & "']")
现在假设人员节点也有一个属性name
。如何选择“{1}}具有值id
且strID
具有值name
的”人员“节点?
答案 0 :(得分:2)
试试这个: -
Set oNodes = oDOM.selectNodes("/people/person[@id='" & strID & "' and @name='" & strName & "']")