gpt4 book ai didi

javascript - 如何在 jQuery 中使用 .wrapAll() ?

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

我需要找到所有 div 中具有 someClass 类的所有 p 标签,并将它们用另一个 div 包装。开始标记如下所示:

<div class="someClass">
// Lots of different tags generated by the site
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
</div>

<div class="someClass">
// Lots of different tags generated by the site
<p>Some text</p>
<p>Some text</p>
</div>

会变成:

<div class="someClass">
// Lots of different tags generated by the site
<div class="bla">
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
<p>Some text</p>
</div>
</div>

<div class="someClass">
// Lots of different tags generated by the site
<div class="bla">
<p>Some text</p>
<p>Some text</p>
</div>
</div>

有什么想法吗?当我尝试使用 .each() 时:对于每个具有 someClass 类的 div ,包装所有 p 标签,但它只是将它们全部包装在顶部 div 中。

最佳答案

你试过这个吗?

$('div.someClass p').wrapAll(...);

还是这个?

$('div.someClass').each(function() {
$(this).find('p').wrapAll(...);
});

编辑

查看您发布的代码后,这似乎是一个语法问题。您需要在这一行中引用引号:

$(this).find('p').wrapAll(<div class='toggle'></div>);

应该是:

$(this).find('p').wrapAll("<div class='toggle'></div>");

关于javascript - 如何在 jQuery 中使用 .wrapAll() ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1567121/

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