Home  >  Q&A  >  body text

warp()回调函数为什么和warpAll回调函数是一样的?

$("p")warp('<div></div>') 这是给每一匹配的P元素添加父元素,

$("p")warpAll('<div></div>') 这是给所匹配P元素(兄弟元素)添加公用一个父元素,这些都好理解,
但是他们的回调函数都是给每一个匹配的元素添加父元素,这是为什么?


小白小白2883 days ago1274

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 22:59:55

    Why is the warp() callback function the same as the warpAll callback function? -PHP Chinese website Q&A-Why is the warp() callback function the same as the warpAll callback function? -PHP Chinese website Q&A

    Please watch and learn.

    reply
    0
  • 迷茫

    迷茫2016-12-19 17:51:48

    因为都是用来包裹!回调函数的返回值用于用于包裹匹配元素的 HTML 内容或 jQuery 对象

    warp()是逐个回调,warpAll()是整体回调

    reply
    1
  • Cancelreply