返回具有 id 属性集的所有节点的 xpath 查询

发布于 2024-09-30 11:39:53 字数 70 浏览 2 评论 0原文

我可以进行一个查询,返回节点的结果集,并将其 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

莫相离 2024-10-07 11:39:53

我不知道如何获取所有明确设置了 id 的节点的结果集。

*[@id] 将选择具有 [id] 属性的所有节点:

问题是它将选取 id 存在但为空的节点(即 id="")

如果要忽略具有空 [id] 属性的节点,请使用:*[@id!=""]

I can't figure out how to get a result set of all nodes that have an id explicitly set.

*[@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!=""]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文