목차
replaceAll() 예제 - 모든 <p>요소를 지정 <h2> 요소로 대체
replaceAll() 정의
replaceAll() 구문
replaceAll() 예제 - 마지막 자식인 모든 <p> 요소대를 대체
replaceAll() 예제 - 모든 <p>요소를 지정 <h2> 요소로 대체
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("<h2>Homzzang.com</h2>").replaceAll("p");
});
});
</script>
<button>클릭</button><br>
<p>홈짱닷컴</p>
<p>코딩언어</p>
<p>그누보드</p>
결과보기
replaceAll() 정의
선택한 요소들을 새 HTML 태그들로 대체.
replaceAll() 메서드 예제 더 보기
https://api.jquery.com/replaceall/
replaceAll() 구문
$(content ).replaceAll(selector )
[매개변수]
content
필수. 기존 내용을 대체해 새로 넣을 내용.
※ HTML 태그 포함 필수
selector
필수. 대체될 요소 지정.
※ 가능값 종류: Selector , jQuery , Array , Element
replaceAll() 예제 - 마지막 자식인 모든 <p> 요소대를 대체
<style>
div {border:1px solid black; margin-bottom:20px;}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("<p><span><b>Homzzang.com</b></span></p>").replaceAll("p:last-child");
});
});
</script>
<button>클릭</button><br><br>
<div>
<p>코딩강의</p>
<p>홈짱닷컴</p>
</div>
<div>
<p>그누강의</p>
<p>홈짱닷컴</p>
</div>
결과보기
주소 복사
랜덤 이동