gpt4 book ai didi

html - 在 XPath 中捕获以下 sibling ?

转载 作者:行者123 更新时间:2023-11-28 02:38:30 25 4
gpt4 key购买 nike

我试图根据树中更高层的强标签获取下面的 li 类文本,其中包含某个词,在本例中为:“restaurants”:

<p class="">The location, where the condo is situated, 
offers a good choice of <strong>restaurants</strong>.
Some of them are listed below:</p>
<ul class="">
<li class="">Restaurant 1</li>
<li class="">Restaurant 2</li>
<li class="">Restaurant 3</li>
<li class="">Restaurant 4</li>
<li class="">Restaurant 5</li>
</ul>

我已经尝试了以下的许多变体,假设我需要通过使用“祖先”在树上走得更高:

//ul/li[contains(ancestor-or-self::@strong[contains(text(),'Restaurants')])

最佳答案

这个 XPath,

//p[strong = 'restaurants']/following-sibling::ul[1]/li

将选择包含 strongp 元素的第一个 ul 元素的所有 li 元素> 字符串值为 "restaurants" 的元素。

关于html - 在 XPath 中捕获以下 sibling ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45724510/

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