2

我想将一个<div>FROM THE BEGINNING of the <H2>up 包装到 next <H2>,但它只是从第一段开始。

这就是我所拥有的,几乎可以完成这项工作:

$('h2:contains("test")').nextUntil('h2').wrapAll('<div class="wrapper" />');

这是我的 HTML:

/* from here */
<h2 class='test'>Include this in the wrap</h2>
<p>this</p>
<p>and this</p>
<p>and this</p> /* to here */

<h2 class='next'>before this</h2>
4

1 回答 1

4

我会尝试:

$("h2.test").nextUntil("h2").andSelf().wrapAll('<div class="wrapper" />');

它似乎确实起到了作用。

于 2011-10-02T18:30:04.417 回答