jQuery - 요소 제거
요소/콘텐츠 삭제
요소와 콘텐츠를 삭제해야 하는 경우 일반적으로 다음 두 가지 jQuery 메서드를 사용할 수 있습니다.
remove() - 선택한 요소(및 해당 하위 요소) 삭제
empty() - 제거 선택한 요소에서 하위 요소 제거
remove() 메서드
jQuery Remove() 메서드는 선택한 요소와 해당 하위 요소를 제거합니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").remove(); }); }); </script> </head> <body> <div id="div1" style="height:100px;width:200px;border:1px solid black;background-color:pink;"> 你好 <p>你很好</p> <p>你太好了</p> </div> <br> <button>移除</button> </body> </html>
empty() 메소드
jQueryempty() 메소드는 선택한 요소의 하위 요소를 삭제합니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").empty(); }); }); </script> </head> <body> <div id="div1" style="height:100px;width:200px;border:1px solid black;background-color:yellow;"> 你好 <p>你很好</p> <p>你太好了</p> </div> <br> <button>清空</button> </body> </html>
삭제된 요소 필터링
jQuery Remove() 메서드는 매개변수도 허용하므로 삭제된 요소를 필터링할 수 있습니다.
이 매개변수는 jQuery 선택기 구문일 수 있습니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("p").remove(".italic"); }); }); </script> </head> <body> <p>这是一个段落。</p> <p class="italic"><i>这是另外一个段落。</i></p> <p class="italic"><i>这是另外一个段落。</i></p> <button>移除所有 class="italic" 的 p 元素。</button> </body> </html>