gpt4 book ai didi

jquery - 每个 h2 之后用 div 包裹内容

转载 作者:行者123 更新时间:2023-12-01 06:40:10 25 4
gpt4 key购买 nike

任何人都可以给我一些想法,我如何用 <div> 包装任何内容每次之后 <h2>标签并给它一个唯一的ID,用jquery完成?

我正在尝试这样做:

<h2>Test</h2>
<div id="wrap_1"> // This is the wrapper im trying to add
<p>Bla bla</p>
<p>More Bla bla</p>
</div>
<h2>Another test</h2>
<div id="wrap_2"> // This is the wrapper im trying to add
<p>Bla bla</p>
<p>More Bla bla</p>
</div>

提前致谢

最佳答案

像这样:

$('h2').each(function(index) { 
$(this).nextUntil('h2').wrapAll('<div id="wrap' + index + '"></div>');
});

Demo

关于jquery - 每个 h2 之后用 div 包裹内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5635843/

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