从父锚 HtmlUnit 获取 href

发布于 2024-11-07 05:48:39 字数 278 浏览 0 评论 0原文

我想做的是使用 HtmlUnit 从跨度的父锚点获取 href。这就是我的意思。

  <a href="http://link.com/serv?id=jibberish&type=dynamic/changeseachvisit"><span>Some Unique Text</span></a>

没有与 或 标签关联的 id 或名称,因此按照此示例,您如何在没有 id 或名称的其他类似链接中找到该链接? 谢谢!

What I am trying to do is to use HtmlUnit to get the href from the parent anchor of a span. Here is what I mean.

  <a href="http://link.com/serv?id=jibberish&type=dynamic/changeseachvisit"><span>Some Unique Text</span></a>

There is no id or name associated with either the or the tags, so going by this example, how would you find that link in a sea of others like it without ids or names?
Thanks!

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

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

发布评论

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

评论(1

诠释孤独 2024-11-14 05:48:39

使用 XPATH //span[contains(.,'Transcript')]/parent::a/@href

(未经测试,但 XPATH 绝对是可行的方法)

use the XPATH //span[contains(.,'Transcript')]/parent::a/@href

(non tested, but XPATH is definitely the way to go)

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