>  기사  >  Jquery 애니메이션으로 요소 콘텐츠를 제거하는 방법

Jquery 애니메이션으로 요소 콘텐츠를 제거하는 방법

尊渡假赌尊渡假赌尊渡假赌
尊渡假赌尊渡假赌尊渡假赌원래의
2023-05-29 09:25:171089검색

jquery 애니메이션으로 요소 콘텐츠를 제거하는 방법: 1. "children()" 메서드를 사용하여 선택한 요소의 모든 하위 요소를 반환한 다음 "remove()" 메서드를 사용하여 선택한 요소와 하위 요소를 삭제합니다. 구문은 "$(element) .children().remove();"입니다. 2. 선택한 요소의 하위 요소를 삭제하려면 "$(child element).empty" 메서드를 사용합니다. ();".

Jquery 애니메이션으로 요소 콘텐츠를 제거하는 방법

이 튜토리얼의 운영 체제: 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 요소의 내용을 지웁니다.

屏幕截图 2023-05-29 091949.png

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 요소의 내용을 지웁니다.

屏幕截图 2023-05-29 092249.png

위 내용은 Jquery 애니메이션으로 요소 콘텐츠를 제거하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.