문법
.remove()
선택한 요소를 삭제합니다.
예를 들어
$("p").remove();
p태그를 선택하고 삭제합니다.
예제 코드
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<title>Home</title>
<style type="text/css">
</style>
</head>
<script type="text/javascript">
$(document).ready(function(){
$("#btn").click(function(){
$("p").remove();
})
});
</script>
<body>
<p>MelonPeach</p>
<button id="btn">버튼</button>
</body>
</html>
버튼을 클릭하면 p태그의 요소를 지웁니다.
실행 테스트
See the Pen zYGZNNL by youngjins (@youngjins) on CodePen.