返回具有 id 属性集的所有节点的 xpath 查询
我可以进行一个查询,返回节点的结果集,并将其 id 设置为我知道的值。但我不知道如何获取所有明确设置了 id 的节点的结果集。
I can make a query that returns a result set of nodes with their id set to a value I know. But I can't figure out how to get a result set of all nodes that have an id explicitly set.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
*[@id]
将选择具有[id]
属性的所有节点:问题是它将选取 id 存在但为空的节点(即
id=""
)如果要忽略具有空
[id]
属性的节点,请使用:*[@id!=""]
*[@id]
will select all nodes with an[id]
attribute:The catch is that it will pick up nodes where id is present but is empty (i.e.
id=""
)If you want to ignore nodes with empty
[id]
attributes, use:*[@id!=""]