728x90
replaceAll() 메서드와 replaceWith() 메서드는 선택한 요소를 새 요소로 바꿀 때 사용한다.
주로 모든 요소를 한꺼번에 바꿀때 사용한다.
* 예제
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title> 객체 조작 및 생성 </title> <script src="js/jquery.js"></script> <script> $(function( ){ $("h2").replaceWith("<h3>replace method</h3>"); //모든 <h2>요소와 <div>요소를 새 요소로 바꾼다. $("<p>Change</p>").replaceAll("div"); }); </script> </head> <body> <section class="box1"> <h2>제목1</h2> <div>내용1</div> <div>내용2</div> </section> <section class="box2"> <h2>제목2</h2> <div>내용3</div> <div>내용4</div> </section> </body> </html> |
'내마음대로만들어보자 > JS' 카테고리의 다른 글
그룹 이벤트 등록 메서드 - click() / on() (0) | 2021.08.22 |
---|---|
unwrap() / wrap() / wrapAll() / wrapInner() 메소드 (0) | 2021.08.21 |
clone() / empty() / remove() 메서드 (0) | 2021.08.21 |
append() / appendTo() / prepend() / prependTo() 메서드 (0) | 2021.08.21 |
before() / insertBefore() / after() / insertAfter() (0) | 2021.08.21 |