======jQuery - Remove Elements======
$(document).ready(function () {
$("button").click(function () {
$("#div1").remove();
});
});
=====jQuery empty() Method=====
%%jQuery%% ''empty()'' 메서드는 선택한 요소의 자식 요소를 제거합니다.\\
====예제====
$(document).ready(function () {
$("button").click(function () {
$("#div1").empty();
});
});
=====Filter the Elements to be Removed=====
%%jQuery%% ''remove()'' 메서드는 또한 하나의 매개변수를 받아서, 제거할 요소를 필터링 할 수 있게 합니다.\\
\\
매개 변수는 %%jQuery%% 셀렉터 구문 중 하나 일 수 있습니다.\\
\\
다음 예제는 ''%%class="test"%%''를 가진 모든 ''%%
%%'' 요소를 제거합니다:\\
====예제====
$(document).ready(function () {
$("button").click(function () {
$("#div1").empty();
});
});
\\
다음 예제에서는 ''%%class="test"%%''및 ''%%class="demo"%%''가 있는 모든 ''%%
%%'' 요소를 제거합니다:\\
====예제====
$(document).ready(function () {
$("button").click(function () {
$("p").remove(".test, .demo");
});
});
=====jQuery HTML Reference=====
모든 %%jQuery%% %%HTML%% 메서드에 대한 전체 개요를 보려면, [[https://www.w3schools.com/jquery/jquery_ref_html.asp|jQuery HTML/CSS Reference]]로 이동하십시오.
{{tag>오션 jQuery - Remove Elements}}