Xpath 节点选择 - 如何选择 2 个不同的元素?

发布于 2024-12-23 20:05:11 字数 340 浏览 1 评论 0原文

我尝试通过 HtmlAgilityPack 选择多个节点,但失败了。因此,我想做的是收集面包屑 div 元素内的 a 节点和 li 节点。

这是我尝试过的:

string srxPathOfCategory = "//div[@class='breadcrumbs']//li or //div[@class='breadcrumbs']//a";
var selectedNodes = myDoc.DocumentNode.SelectNodes(srxPathOfCategory);

正确的语法是什么?

I am trying this as selecting multiple nodes via HtmlAgilityPack but it fails. So, what I am trying to do is collecting a nodes and li nodes inside the breadcrumbs div element.

This is what I tried:

string srxPathOfCategory = "//div[@class='breadcrumbs']//li or //div[@class='breadcrumbs']//a";
var selectedNodes = myDoc.DocumentNode.SelectNodes(srxPathOfCategory);

What is the correct syntax?

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

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

发布评论

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

评论(1

倾城°AllureLove 2024-12-30 20:05:11

解决方案是

string srxPathOfCategory = "//div[@class='breadcrumbs']//li[@class='product'] | //div[@class='breadcrumbs']//a";

因此对于“或”,您需要使用“|”

Solution is

string srxPathOfCategory = "//div[@class='breadcrumbs']//li[@class='product'] | //div[@class='breadcrumbs']//a";

So for " or " you need to use " | "

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