课程
/前端开发
/jQuery
/jQuery基础(二)—DOM篇
我怎么感觉wrap()与wrapAll()差不多的
2016-04-12
源自:jQuery基础(二)—DOM篇 5-5
正在回答
给你举个小例子你就懂啦!
wrap()方法
$("p").wrap("<strong></strong>");
结果:
<strong>
<p>first</p>
</strong>
<p>second</p>
wrapAll()方法
$("p").wrapAll("<strong></strong>");
fmaple 提问者
SUMMER田
懂了 感谢
wrap()是针对单个dom元素处理,如果要将集合中的元素用其他元素包裹起来就要使用wrapAll(),例子通楼上
举报
jQuery第二阶段开启DOM修炼,了解创建、插入、删除与替换
2 回答wrapAll(function()) =wrap()?????
2 回答wrapAll()??
1 回答wrap()
2 回答wrap疑问
6 回答.wrapInner( function ) 和.wrapAll( function ) 又有什么区别呢