jquery 애니메이션으로 요소 콘텐츠를 제거하는 방법: 1. "children()" 메서드를 사용하여 선택한 요소의 모든 하위 요소를 반환한 다음 "remove()" 메서드를 사용하여 선택한 요소와 하위 요소를 삭제합니다. 구문은 "$(element) .children().remove();"입니다. 2. 선택한 요소의 하위 요소를 삭제하려면 "$(child element).empty" 메서드를 사용합니다. ();".
이 튜토리얼의 운영 체제: Windows 10 시스템, jQuery 버전 3.6.0, Dell G3 컴퓨터.
jquery 애니메이션에서 요소 콘텐츠를 제거하는 두 가지 방법:
1. children() 메서드를 사용하여 선택한 요소의 모든 직접 하위 요소를 반환한 다음 jQuery 제거() 메서드를 사용하여 선택한 요소를 삭제하고 해당 하위 요소.
코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <script src="/jquery/jquery-1.11.1.min.js"></script><script>$(document).ready(function(){ $("button").click(function(){ $("#div1").children().remove(); });}); </script> </head> <body> <div id="div1" style="height:120px;width:300px;border:1px solid black;background-color:yellow;"> <p>This is some text in the div.</p> <p>This is a paragraph in the div.</p> <p>This is another paragraph in the div.</p> </div> <br> <button>删除 div 元素</button ></body> </html>
브라우저로 html 파일을 열고 삭제 버튼을 클릭한 후 div 요소의 내용을 지웁니다.
2. jQueryempty() 메소드는 선택한 요소의 하위 요소를 삭제합니다.
코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <script src="/jquery/jquery-1.11.1.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").empty(); });}); </script> </head> <body> <div id="div1" style="height:100px;width:300px;border:1px solid black;background-color:yellow;">This is some text in the div. <p>This is a paragraph in the div.</p> <p>This is another paragraph in the div.</p> </div> <br> <button>清空 div 元素</button> </body> </html>
브라우저로 html 파일을 열고 삭제 버튼을 클릭한 후 div 요소의 내용을 지웁니다.
위 내용은 Jquery 애니메이션으로 요소 콘텐츠를 제거하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!