I want all li nodes that doesn’t have id or class attributes
使用:
//li[not(@id) and not(@class)]
这将选择XML文档中的所有li元素,以使li元素没有id,也没有class属性.