Empty
-
[jQuery] 15. Remove - jQuery 강좌 jQuery / CSEWeb/jQuery 2015. 6. 13. 11:22
jQuery - Remove Elements 1. Remove Elements/Content 요소와 내용을 삭제하기 위한, 2 개의 jQuery 메소드가 있습니다: - remove() - empty() 2. jQuery remove() Method remove() 메소드는 선택된 요소와 그의 자식 요소들까지 제거합니다. 12345678910111213141516171819202122232425262728$(document).ready(function(){$("button").click(function(){$("#div1").remove();});}); This is some text in the div.This is a paragraph in the div.This is another paragraph ..