-
[jQuery&html] html 요소 지우기 .remove()programming/JavaScript&jQuery 2019. 11. 6. 00:00반응형
기본 코드
1234567891011121314151617<html><head><script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU=" crossorigin="anonymous"></script><script src="./remove.js"></script></head><body><div id="main"><button>test</button><p class="test">p tag text test</p><hr><input type="text"><p>p 2nd text test</p><hr><button>code test</button></div></body></html>cs 1. remove()
Description: Remove the set of matched elements from the DOM.
remove()에 대한 jQuery에 올라와 있는 설명이다.
일치하는 요소들을 DOM에서 없애는 기능을 가지고 있다.
2. 사용법
12345678$("#main").remove(); // div#main 없애기$("button").remove(); // 모든 버튼 없애기$("button").first().remove() // 첫번째 버튼만 없애기$("div").remove("#main"); // div#main 없애기cs 1. 아이디를 통해서 div를 없앨 수 있다.
2. 태그 이름을 통해서 없앨 수 있다.
3. first()를 통해 첫번째 태그만 없앨 수 있다.
4. 먼저 태그명을 쓰고 뒤에 아이디를 써도 해당 요소를 없앨 수 있다.
-참고
https://api.jquery.com/remove/
-해당 소스
https://github.com/devdevdev09/htmlJsJquery/blob/master/example/jQuery/remove/remove.js
반응형'programming > JavaScript&jQuery' 카테고리의 다른 글
[JavaScript] ES2015 백틱(`)과 템플릿 문자열 (0) 2019.11.22 [JavaScript] 에러처리 try..catch..finally..throw.. (0) 2019.11.12 [JavaScript] 함수 선언식과 표현식 (0) 2019.11.05 [JavaScript] 호이스팅이란? (0) 2019.11.04 [JavaScript] let 그리고 const 사용법 (0) 2019.11.03