日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

jQuery基础:remove()与 detach()区别

發布時間:2023/12/10 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 jQuery基础:remove()与 detach()区别 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1、detach()

  • detach() 方法移除被選元素,包括所有文本和子節點。
  • 這個方法會保留 jQuery 對象中的匹配的元素,因而可以在將來再使用這些匹配的元素。
  • detach() 會保留所有綁定的事件、附加的數據,這一點與 remove() 不同。
<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><title>Document</title><style>p{margin: 6px;background: yellow;}p.off{background: red;}</style> </head> <body><p>hello</p> how are<p>you?</p><button>按鈕</button> </body> <script src="libs/jquery-1.8.3.min.js"></script> <script type="text/javascript">$(function(){$("p").click(function(){$(this).toggleClass("off");})var p;$("button").click(function(){if(p){p.appendTo("body");p = null;}else{p = $("p").detach();console.log(p);}})}); </script> </html>

2、remove()

  • 將匹配元素集合從DOM中刪除。
  • 同時移除元素上的事件及 jQuery 數據。
<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><title>Document</title><style>p{margin: 6px;background: yellow;}p.off{background: red;}</style> </head> <body><p>hello</p> how are<p>you?</p><button>按鈕</button> </body> <script src="libs/jquery-1.8.3.min.js"></script> <script type="text/javascript">$(function(){$("p").click(function(){$(this).toggleClass("off");})var p;$("button").click(function(){if(p){p.appendTo("body");p = null;}else{p = $("p").remove();console.log(p);}});//移除 =》加上,點擊沒反應,綁定的事件失效 }); </script> </html>

3、empty():移除匹配元素的所有子節點

4、unwrap():將匹配元素集合的父級元素刪除,保留自身(和兄弟元素,如果存在)在原來的位置。

轉載于:https://www.cnblogs.com/gao-xiong/p/5933284.html

總結

以上是生活随笔為你收集整理的jQuery基础:remove()与 detach()区别的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。