从父锚 HtmlUnit 获取 href
我想做的是使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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)