2013年8月15日 星期四

[jQuery] 移除元素_remove item(.remove(), .empty())

jQuery動態移除元素有兩種方法:.remove() 和 .empty()

兩者的差別是 .remove()是將整個元素移除,而 .empty()則是將清除元素裡的內容。


不多說,直接看範例:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>show demo</title>
</head>
<body>
<div id="showBlock">
Test content
</div>
<!-- click the button to remove item -->
<input type="button" id="btn1" value="removeTxt"/>
<input type="button" id="btn2" value="emptyTxt"/>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script>
//remove the showBlock item
$("#btn1").click(function () {
$("#showBlock").remove();
});
//empty the content in showBlock
$("#btn2").click(function () {
$("#showBlock").empty();
});
</script>
</body>
</html>

執行後的結果:
.remove() 連同 div 一起被移除,而 .empty()則是僅移除 Test content 的部分,變成 <div id="showBlock"></div>

為了區別,我分別將兩個div加上外框,結果較明顯

範例實作:


參考資料:
[1] http://api.jquery.com/category/manipulation/dom-removal/

沒有留言:

張貼留言