gpt4 book ai didi

jquery - 使用 jQuery 将 3 个 div 合并为一个

转载 作者:行者123 更新时间:2023-12-03 22:00:54 25 4
gpt4 key购买 nike

我需要使用 jQuery 将 3 个 div 包装成一个。

<div class="one"></div><div class="two"></div><div class="three"></div>

进入此

<div class="wrap"><div class="one"></div><div class="two"></div><div class="three"></div></div>

请问我该怎么做?

非常感谢您提前提供的帮助

最佳答案

$('.one, .two, .three').wrapAll('<div class="wrap">');

$('.one, .two, .three').wrapAll( $('<div>').addClass('wrap') );

引用:http://docs.jquery.com/Manipulation/wrapAll

关于jquery - 使用 jQuery 将 3 个 div 合并为一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1526198/

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