xPath - 如何向节点的父节点添加条件?

发布于 2024-11-25 05:40:34 字数 189 浏览 0 评论 0原文

我正在尝试向节点的父节点添加条件,但无法使其工作。

我只想要具有特定类别的节点,但也希望其父节点也具有特定类别,例如:

//*[@class='price' and parent@class='special-price']

有人知道如何为父节点添加条件吗?

谢谢

I'm trying to add a condition to a node's parent, and I can't get it to work.

I only want the nodes having a certain class, but also for which the parent has also a certain class, like :

//*[@class='price' and parent@class='special-price']

Does someone have an idea on how to add conditions on parents too ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

薄荷→糖丶微凉 2024-12-02 05:40:34
//*[@class='special-price']/*[@class='price']

如果您无论如何都要搜索整个文档,请在查找子文档的过程中过滤父文档,而不是选择子文档,然后返回检查父文档。

//*[@class='special-price']/*[@class='price']

If you're searching the whole document anyway, then filter the parents en route to the children, rather than selecting the children and then going back up to check the parent.

橙味迷妹 2024-12-02 05:40:34

使用 //*p[@class = 'special-price']/*[@class = 'price']//*[@class = 'price' 和 ../ @class = '特价']

Use //*p[@class = 'special-price']/*[@class = 'price'] or //*[@class = 'price' and ../@class = 'special-price'].

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