하이오리
[jQuery] 요소 바꾸기 - replaceAll(),replaceWith() 본문
replaceAll();
바꿀 요소를 선택한 요소에 바꾼다.
$("replaceAll success!").replaceAll($("target")); |
replaceWith();
선택한 요소를 다른 요소로 바꾼다.(이것만 쓰면 되겠다)
$(document).ready(function() { $("#target").replaceWith("replaceWith success!"); }); <div id="target"></div> |
'jQuery > 자주쓰는함수' 카테고리의 다른 글
[jQuery] 데이터 전송 - serialize(), serializeArray() (0) | 2013.06.30 |
---|---|
[jQuery] getJSON() (0) | 2013.06.23 |
[jQuery] ajax()로 xml데이터 가져오기. (0) | 2013.06.23 |
[jQuery] 요소에 래퍼로 감싸고 해제하기 - wrap(),unwrap() (0) | 2013.06.05 |
[jQuery] 요소 지우기 - remove(),empty() (0) | 2013.06.04 |