유블로그

[jQuery] elment 삭제하기 - .remove(), .empty() 본문

JavaScript & jQuery

[jQuery] elment 삭제하기 - .remove(), .empty()

yujeong kang 2020. 9. 13. 11:51
<head>
	<script type="text/javascript">
        $(document).ready(function() {
            $("#btn1").click(function() {
                $("#h2").remove();
            });
            $("#btn2").click(function() {
                $("div").empty();
            });
        });
	</script>
</head>
<body>
	<div>
		<h2 id="h1">안녕하세요1</h2>
		<h2 id="h2">안녕하세요2</h2>
		<h2 id="h3">안녕하세요3</h2>
	</div>
	<input type="button" id="btn1" value="두번째 h2 삭제"/>
	<input type="button" id="btn2" value="div 비움"/>
</body>