>  기사  >  웹 프론트엔드  >  jquery로 html 요소를 삭제하는 방법

jquery로 html 요소를 삭제하는 방법

青灯夜游
青灯夜游원래의
2021-05-19 16:49:204285검색

삭제 방법: 1. 선택한 요소와 해당 하위 요소를 삭제하려면 제거() 메서드를 사용하세요. 구문 "$(selector).remove()" 2. 선택한 요소에서 삭제하려면empty() 메서드를 사용하세요. 하위 요소, 구문 "$(selector).empty()".

jquery로 html 요소를 삭제하는 방법

이 튜토리얼의 운영 환경: windows7 시스템, jquery1.10.2 버전, Dell G3 컴퓨터.

요소와 콘텐츠를 삭제해야 하는 경우 일반적으로 다음 두 가지 jQuery 메서드를 사용할 수 있습니다.

  • remove() - 선택한 요소(및 해당 하위 요소) 삭제

  • empty() - 삭제 위치 선택한 요소 하위 요소

jQuery Remove() 메서드

jQuery Remove() 메서드는 선택한 요소와 해당 하위 요소를 제거합니다.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.staticfile.org/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:300px;border:1px solid black;background-color:yellow;">

这是 div 中的一些文本。
<p>这是在 div 中的一个段落。</p>
<p>这是在 div 中的另外一个段落。</p>

</div>
<br>
<button>移除div元素</button>

</body>
</html>

Rendering:

jquery로 html 요소를 삭제하는 방법

jQueryempty() 메소드

jQueryempty() 메소드는 선택한 요소의 하위 요소를 삭제합니다.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.staticfile.org/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:300px;border:1px solid black;background-color:yellow;">

这是 div 中的一些文本。
<p>这是在 div 中的一个段落。</p>
<p>这是在 div 中的另外一个段落。</p>

</div>
<br>
<button>清空div元素</button>

</body>
</html>

렌더링:

jquery로 html 요소를 삭제하는 방법

관련 동영상 튜토리얼 추천: jQuery 튜토리얼(동영상)

위 내용은 jquery로 html 요소를 삭제하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

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