刪除方法:1、使用remove()刪除元素及其內部的所有內容,語法為「指定元素.remove();」;2、使用children()和unwrap()刪除元素,但裡面的保留子節點,語法為「指定元素.children().unwrap();」。
本教學操作環境:windows7系統、jquery1.10.2版本、Dell G3電腦。
jquery刪除元素本身可分成兩種情況:
#刪除元素本身及其里面的內容(文字和子節點)
只刪除元素本身,保留子節點
#情況1、使用 remove( ) 方法
#使用remove( ) 方法來刪除某個元素及其內部的所有內容。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("div").remove(); }); }); </script> <style type="text/css"> div { background-color: yellow; } </style> </head> <body> <div> <p>这是 div 元素中的段落。</p> <p>这是 div 元素中的段落。</p> <p>这是 div 元素中的段落。</p> </div> <button>删除div元素</button> </body> </html>
情況2:利用children() unwrap()方法
children() 方法返回傳回被選元素的所有直接子元素。
unwrap() 方法刪除被選元素的父元素。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="js/jquery-1.10.2.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("div").children().unwrap(); }); }); </script> <style type="text/css"> div { background-color: yellow; } </style> </head> <body> <div> <p>这是 div 元素中的段落。</p> <p>这是 div 元素中的段落。</p> <p>这是 div 元素中的段落。</p> </div> <button>删除div元素</button> </body> </html>
【推薦學習:jQuery影片教學、web前端影片】
以上是jquery怎麼刪除元素本身的詳細內容。更多資訊請關注PHP中文網其他相關文章!