本文實例為大家分享了jquery實作刪除一個元素後面的所有元素功能的詳細實作過程,具體實作內容如下
實現效果:
選擇項目
點選刪除按鈕,選項之後的所有同級元素都被刪除
jQuery 遍歷的nextAll() 方法可以搜尋DOM 樹中的元素跟隨的同胞元素,也就是一個元素後面的所有同級元素,刪除可以使用方法remove(),所以連起來為$(selector).nextAll().remove();
以下給出實例示範:點選按鈕後,刪除被選項目之後的所有選項
建立Html元素
<div class="box"> <span>点击按钮后,删除被选项目之后的所有选项。</span><br> <div class="content"> <input type="checkbox" name="item"><span>萝卜</span> <input type="checkbox" name="item"><span>青菜</span> <input type="checkbox" name="item"><span>小葱</span><br> <input type="checkbox" name="item"><span>豆腐</span> <input type="checkbox" name="item"><span>土豆</span> <input type="checkbox" name="item"><span>茄子</span><br> </div> <input type="button" value="删除"> </div>
簡單設定一下css樣式
div.box{width:300px;height:200px;padding:10px 20px;border:4px dashed #ccc;} div.box>span{color:#999;font-style:italic;} div.content{width:250px;height:100px;margin:10px 0;border:1px solid green;} input{margin:10px;} input[type='button']{width:200px;height:35px;margin:10px;border:2px solid #ebbcbe;}
寫jquery程式碼
$(function(){ $("input:button").click(function() { $("input:checkbox:checked").next().nextAll().remove(); }); })
以上就是小編為大家準備的知識點,希望大家可以熟練。