Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试选择li页面上没有class="r"
li
class="r"
到目前为止我所拥有的是:
.//li
这是我迄今为止尝试过的
//li[not([@class='r'])]
有了这个我得到错误:
“表达式必须评估为节点集。”
使用这个表达式//li[not(@class='r')]
//li[not(@class='r')]
var lis = htmlDoc.DocumentNode.SelectNodes("//li[not(@class='r')]")