生活随笔
收集整理的這篇文章主要介紹了
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()区别的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。