我想将一个<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>