什么是xpath查询来选择属性att不存在的元素。
<root>
<elem att='the value' />
<elem att='the value' />
<elem att='the value' />
**<elem />**
<elem att='the value' />
<elem att='the value' />
</root>
我想更新属性att不存在的元素。
由于
答案 0 :(得分:4)
答案 1 :(得分:1)
此外,您可以使用@*
(attribute::*
的{{3}})来表示任何属性。
使用任何属性示例:
//elem[@*]
没有任何属性示例:
//elem[not(@*)]