gpt4 book ai didi

xml - 使用 XPath 选择下一个链接

转载 作者:数据小太阳 更新时间:2023-10-29 02:20:08 28 4
gpt4 key购买 nike

我必须编写一个 XPath 表达式来获取 html 中 anchor 标记的 href 属性,该标记紧跟在标记为“当前页面”的标记之后(在示例中为 #notimportant/2)。

<dd>
<a href="#notimportant/1" class="current-page">1</a>
<a href="#notimportant/2">2</a>
<a href="#notimportant/3">3</a>
<a href="#notimportant/4">4</a>
<!-- EDIT: Do not return the next sibling if @href ends with /last -->
<a href="#notimportant/last">last</a>
</dd>

我想从//a[@class='current-page']/../next-sibling-of-first-node/@href 这样的东西开始,但我被困在这里......

谁能帮我解决这个问题?我用 Google 搜索了一下,但 XPath 不是我最喜欢的技能(不,我不能使用 jQuery。它不是网络应用程序)。

最佳答案

//a[@class='current-page']/following-sibling::a[1]

关于xml - 使用 XPath 选择下一个链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2199001/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com