3

我想nextUntil()用来制作所有直接跟随 a 的 p 的橙色,h2.first直到 p 之外的任何其他 html 标记到达。

<h2 class="first">Lorem ipsum</h2>
<p>Lorem ipsum</p>
<p>Lorem ipsum</p>
<p>Lorem ipsum</p>
<ul>
  <li>Lorem ipsum</li>
  <li>Lorem ipsum</li>
  <li>Lorem ipsum</li>
</ul>
<h2>
<p>Lorem ipsum</p>
<p>Lorem ipsum</p>
<p>Lorem ipsum</p>

所以在这种情况下,pragraphs 后面是一个无序列表。但它也可以是任何其他 html 标记。我的问题是表达“除 p 之外的任何其他 html 标记”。有没有人知道答案?

->nextUntil(**'any other html tag than p'**, 'p')

提前非常感谢!

4

1 回答 1

3

Not可以帮助您这样做。你可以使用这个:

nextUntil(":not(p)");
于 2014-07-09T12:22:18.360 回答