标签: xhtml xpath css-selectors
如何在xhtml文档中找到没有id和class属性的节点?
答案 0 :(得分:11)
来自@astropanic(OP)的评论:
我想要所有没有的li节点 id或类属性
使用强>:
//li[not(@id) and not(@class)]
这将选择XML文档中的所有li元素,以使li元素没有id且没有class属性。
li
id
class