Xpath表达式匹配HtmlAgilityPack的几个属性

时间:2009-12-18 05:15:22

标签: html xpath

假设我想找到一个具有特定宽度和高度属性的表 没问题

doc.DocumentNode.SelectSingleNode("//table[@width='500']"); 

是否可以以某种方式将height ='500'添加到此Xpath表达式?

1 个答案:

答案 0 :(得分:3)

使用逻辑“和”运算符:

doc.DocumentNode.SelectSingleNode("//table[@width='500' and @height='500']");