gpt4 book ai didi

php - XPATH - 选择节点范围

转载 作者:可可西里 更新时间:2023-11-01 13:47:56 24 4
gpt4 key购买 nike

我有以下代码:

<div id="mydiv">
<h1>Some title</h1>
<p>don't select me</p>
<p>select me 1</p>
<p>select me 2</p>
<p>select me 3</p>
<p>don't select me</p>
</div>

我需要选择 p[2] 到 p[4]。

试过这段代码,但没有成功:

'.//*[@id="mydiv"]/p[preceding-sibling::p[4] and following-sibling::p[2]]'

最佳答案

你可以试试:

'//*[@id='mydiv']/p[position()>1 and position()<5]'


或者,您的初始代码可以更改为:

'//*[@id="mydiv"]/p[preceding-sibling::p and following-sibling::p]'


因此所有具有前后 p 节点的 p 都将被选中(即 p[2] 到 p[4])。< br/>

关于php - XPATH - 选择节点范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10289397/

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