使用 HTMLAgilityPack 从 HTMLNode 中提取 URL 的 XPath 语法?

发布于 2024-09-16 11:10:27 字数 277 浏览 8 评论 0原文

从以下 HTMLNode 获取 href 属性值的正确 XPath 语法是什么:

<a target="_blank" class="monkeys" href="http://someurl.com" id="123">
    <span class="title">Monkeys are flying all over!</span>
</a> 

What is the proper XPath syntax to grab the value of the href attribute from the following HTMLNode:

<a target="_blank" class="monkeys" href="http://someurl.com" id="123">
    <span class="title">Monkeys are flying all over!</span>
</a> 

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

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

发布评论

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

评论(2

药祭#氼 2024-09-23 11:10:27
//a[@id='123']/@href

对我有用。

//a[@id='123']/@href

works for me.

迷路的信 2024-09-23 11:10:27

//a@href 是您要找的吗?

使用 HTMLAgilityPack,您使用的方法是:

HTMLAgilityPack.HTMLNode.GetAttributeValue("href", "")

Is //a@href what you're looking for?

Using HTMLAgilityPack, the method you'd use is:

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