jq删除元素remove、unwrap

前端开发   发布日期:2023年05月03日   浏览次数:318

使用 remove( ) 方法

$(document).ready(function(){
      $("button").click(function(){
            $("div").remove();
      });
});

利用children()+unwrap()方法

children() 方法返回返回被选元素的所有直接子元素。

unwrap() 方法删除被选元素的父元素。

$(document).ready(function(){
      $("button").click(function(){
            $("div").children().unwrap();
      });
});


以上就是jq删除元素remove、unwrap的详细内容,更多关于jq删除元素remove、unwrap的资料请关注九品源码其它相关文章!