gpt4 book ai didi

xml - xpath 通过索引获取元素

转载 作者:IT王子 更新时间:2023-10-28 23:57:56 25 4
gpt4 key购买 nike

我有下面的 xpath 表达式

//div[@class="post-content"]//img

在 html 页面上运行,扫描图像。上面的查询返回了很多图像,但我只想要列表中的第二张。

我试过这些但没有成功:

//div[@class="post-content"]//img[1] and
//div[@class="post-content"]//img[position()=1]

最佳答案

在 XPath 中索引从 1 位置开始,因此

//div[@class="post-content"]//img[2]

如果您必须在 div[@class="post-content"] 中选择每个第二个 img,应该可以正常工作。
如果您只想从 div[@class="post-content"] 中的所有图像中选择第二个 img,请使用:

(//div[@class="post-content"]//img)[2]

关于xml - xpath 通过索引获取元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10025221/

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