wrap()与wrapAll()????

来源:5-5 DOM包裹wrapAll()方法

fmaple

2016-04-12 11:23

我怎么感觉wrap()与wrapAll()差不多的

写回答 关注

3回答

  • HEI_ComeOn
    2016-04-12 13:47:31
    已采纳

    给你举个小例子你就懂啦!

    wrap()方法

    $("p").wrap("<strong></strong>");

    结果:

    <strong>

        <p>first</p>

    </strong>

    <strong>

        <p>second</p>

    </strong>



    wrapAll()方法

    $("p").wrapAll("<strong></strong>");

    结果:

    <strong>

         <p>first</p>

         <p>second</p>

    </strong>


    SUMMER...

    wrapAll(funciton(){return ''})请问一下你知道为什么回调函数相当于wrap(),多谢!

    2016-05-18 19:13:19

    共 2 条回复 >

  • 怀揣梦想的小白
    2019-01-30 15:51:33

    懂了 感谢

  • 慕雪5436851
    2016-04-12 14:17:58

    wrap()是针对单个dom元素处理,如果要将集合中的元素用其他元素包裹起来就要使用wrapAll(),例子通楼上

    fmaple

    嗯嗯,懂了,感谢!!!

    2016-04-13 15:26:45

    共 1 条回复 >

jQuery基础(二)—DOM篇

jQuery第二阶段开启DOM修炼,了解创建、插入、删除与替换

114014 学习 · 590 问题

查看课程

相似问题