在给定标签的所有子项上使用jQuery的.wrap

前端之家收集整理的这篇文章主要介绍了在给定标签的所有子项上使用jQuery的.wrap前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
工作的jQuery,我想要执行的是类似于以下内容
$('soMetag').children().wrap('<div></div>');

使用所产生的DOM操作将所有孩子包装在一个div中,而不是每个孩子单独包装。

开始示例HTML:

<div>
   <h3>Heading</h3>
   <p>Paragraph</p>
</div>

这行代码如何:

<div>
    <div>
        <h3>Heading</h3>
    </div>
    <div>
        <p>Paragraph</p>
    </div>
</div>

我想要的是:

<div>
    <div>
        <h3>Heading</h3>
        <p>Paragraph</p>
    </div>
</div>

要找到最终结果的正确语法是什么?

解决方法

$('soMetag').children().wrapAll("<div></div>");
原文链接:https://www.f2er.com/jquery/181920.html

猜你在找的jQuery相关文章