刪除方法:1、使用「$(selector).next().remove()」語句刪除指定元素後的第一個兄弟節點;2、使用「$(selector).nextAll() .remove()」語句刪除指定元素後的所有兄弟節點。
本教學操作環境:windows7系統、jquery1.10.2版本、Dell G3電腦。
jquery刪除指定元素後的兄弟節點的方法
#1、利用next()和remove()方法
使用next()來取得被選元素的下一個兄弟節點。
使用remove()方法刪除取得的兄弟元素
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> .siblings,.siblings *{ display: block; border: 2px solid lightgrey; color: lightgrey; padding: 5px; margin: 15px; } </style> <script src="js/jquery-1.10.2.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("button").click(function() { $("h2").next().remove(); }); }); </script> </head> <body> <div class="siblings">div (父) <p>p(兄弟元素)</p> <span>span(兄弟元素)</span> <h2>h2(本元素)</h2> <h3>h3(兄弟元素)</h3> <p>p(兄弟元素)</p> </div> <button>清除兄弟元素</button> </body> </html>
##2、利用nextAll()和remove()方法
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> .siblings,.siblings *{ display: block; border: 2px solid lightgrey; color: lightgrey; padding: 5px; margin: 15px; } </style> <script src="js/jquery-1.10.2.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $("button").click(function() { $("h2").nextAll().remove(); }); }); </script> </head> <body> <div class="siblings">div (父) <p>p(兄弟元素)</p> <span>span(兄弟元素)</span> <h2>h2(本元素)</h2> <h3>h3(兄弟元素)</h3> <p>p(兄弟元素)</p> </div> <button>清除兄弟元素</button> </body> </html>相關影片教學推薦:
jQuery教學(影片)
以上是jquery怎麼刪除指定元素後的兄弟節點的詳細內容。更多資訊請關注PHP中文網其他相關文章!