我想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')
提前非常感谢!