怎么根据多个属性查找节点
例如有这样的xml
<node attribute1="a" attribute2="b" value="1"/>
<node attribute1="a" attribute2="c" value="2"/>
<node attribute1="d" attribute2="e" value="3"/>
我想用document.selectsinglenode查找attribute1为a,attribute2为c的节点,
根据一个属性查的会写,两个的不会写啊
SelectSingleNode("node[@attribute1='a']")
SelectSingleNode("node[@attribute1='a' and @attribute2='c']")
更多语法可以参考 http://www.w3school.com.cn/xpath/xpath_operators.asp
在结果集里再写
SelectSingleNode("node[@attribute1='c']")