当前位置:Gxlcms > JavaScript > jQuerywrap()方法是什么意思

jQuerywrap()方法是什么意思

时间:2021-07-01 10:21:17 帮助过:17人阅读

jQuery wrap() 方法的相关介绍:

定义和用法

wrap() 方法使用指定的 HTML 元素来包裹每个被选元素。

相关推荐:《js教程》

语法

$(selector).wrap(wrappingElement,function(index))

1566008756(1).png

实例

在 <div> 元素中包裹每个 <p> 元素:

$("button").click(function(){
    $("p").wrap("<div></div>");
});

以上就是jQuery wrap()方法是什么意思的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行