코드랩 레퍼런스

.replaceWith() 본문

JQUERY

.replaceWith()

webstoryboy 2017. 6. 5. 11:59

.replaceWith() 메서드는 선택한 각각의 요소에 HTML 요소를 추가합니다.

Definition

  • .replaceWith() 메서드는 선택한 요소를 새로운 컨텐츠로 바꿉니다.

Syntax

$("selector").replaceWith();

Compatibility

크롬 아이콘 파이어폭스 아이콘 사파리 아이콘 오페라 아이콘 안드로이드 아이콘 ios 아이콘 익스플로러6 아이콘 6 익스플로러7 아이콘 7 익스플로러8 아이콘 8 익스플로러9 아이콘 9 익스플로러10 아이콘 10 익스플로러11 아이콘 11 엣지 아이콘
.replaceWith()

Sample1 .replaceWith() 메서드 예제입니다.

탐색(Traversing)

  • .replaceAll() 메서드는 선택한 요소를 새로운 요소로 바꿉니다.
  • .replaceWith() 메서드는 선택한 요소를 새로운 컨텐츠로 바꿉니다.
  • .clone() 메서드는 선택한 요소 본사본을 만듭니다.
  • .wrap() 메서드는 선택한 요소에 새로운 요소를 추가합니다.
  • .wrapAll() 메서드는 선택한 모든 요소에 새로운 요소를 추가합니다.
  • .wrapInner() 메서드는 선택한 각각의 요소에 새로운 요소를 추가합니다.
  • .html() 메서드는 선택한 요소 내부의 HTML을 읽거나 쓸 수 있습니다.
  • .text() 메서드는 선택한 요소 내부의 텍스트를 읽거나 쓸 수 있습니다.
<!DOCTYPE html>
<html lang="ko">
    <head>
        <meta charset="UTF-8">
        <title>제이쿼리(jQuery)</title>
			<style>
				li.on {padding: 4px 4px 2px 10px; font-size: 90%; color: #c7254e; white-space: nowrap; background-color: #f9f2f4; border-radius: 4px; border:1px dashed #a51a3d;}
			</style>
    </head>
    <body>
		<h3>탐색(Traversing)</h3>
		<div class="list">
			<ul>
				<li class="one1">.replaceAll() 메서드는 선택한 요소를 새로운 요소로 바꿉니다.</li>
				<li class="one2">.replaceWith() 메서드는 선택한 요소를 새로운 컨텐츠로 바꿉니다.</li>
				<li class="one">.clone() 메서드는 선택한 요소 본사본을 만듭니다.</li>
				<li class="one">.wrap() 메서드는 선택한 요소에 새로운 요소를 추가합니다.</li>
				<li class="two">.wrapAll() 메서드는 선택한 모든 요소에 새로운 요소를 추가합니다.</li>
				<li class="two">.wrapInner() 메서드는 선택한 각각의 요소에 새로운 요소를 추가합니다.</li>
			</ul>
		</div>

		<div class="btn">
			<ul>
				<li><input type="radio" name="radio" id="ex1" value="1"><label for="ex1">$("<li class='on'>.replaceAll()를 통해서 변경했습니다.</li>" ).replaceAll(".one1");</label></li> 
				<li><input type="radio" name="radio" id="ex2" value="2"><label for="ex2">$(".one2" ).replaceWith("<li class='on'>.replaceWith()를 통해서 변경했습니다.</li>");</label></li>
				<li><input type="radio" name="radio" id="ex3" value="3"><label for="ex3">$("<li class='on'>.replaceAll()를 통해서 변경했습니다.</li>" ).replaceAll(".one");</label></li>
				<li><input type="radio" name="radio" id="ex4" value="4"><label for="ex4">$(".two" ).replaceWith("<li class='on'>.replaceWith()를 통해서 변경했습니다.</li>");</label></li>
			</ul>
		</div>

		<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
		<script type="text/javascript">
		$(document).ready(function(){    
			var btn = $(".btn > ul > li > input");
		
			btn.click(function(){
				var num = $(this).attr("value");
				$("*").removeClass("on");
				
				if(num == 1){$("<li class='on'>.replaceAll()를 통해서 변경했습니다.</li>" ).replaceAll(".one1");}
				if(num == 2){$(".one2" ).replaceWith("<li class='on'>.replaceWith()를 통해서 변경했습니다.</li>");}
				if(num == 3){$("<li class='on'>.replaceAll()를 통해서 변경했습니다.</li>" ).replaceAll(".one");}
				if(num == 4){$(".two" ).replaceWith("<li class='on'>.replaceWith()를 통해서 변경했습니다.</li>");}
			});
		}); 
		</script> 
	</body>
</html>          

Share

Ad

Comments