jQuery wrap和wrapAll之间的区别

前端之家收集整理的这篇文章主要介绍了jQuery wrap和wrapAll之间的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
jQuery .wrap和.wrapAll有什么区别?他们几乎做同样的事情,但可能有什么区别?

解决方法

注意说明的区别:

07000: Wrap an HTML structure around each element in the set of matched elements.
07001: Wrap an HTML structure around all elements in the set of matched elements.

.wrap()单独包装每个元素,但.wrapAll()将它们全部包装成一个组。

例如:

<div class="foo"></div>
<div class="foo"></div>
<div class="foo"></div>

使用$(‘。foo’)。wrap(‘< div class =“bar”/>‘);这发生:

<div class="bar"><div class="foo"></div></div>
<div class="bar"><div class="foo"></div></div>
<div class="bar"><div class="foo"></div></div>

但是使用$(‘。foo’)。wrapAll(‘< div class =“bar”/>‘);这发生:

<div class="bar">
  <div class="foo"></div>
  <div class="foo"></div>
  <div class="foo"></div>
</div>
原文链接:https://www.f2er.com/jquery/181700.html

猜你在找的jQuery相关文章