하이오리
[jQuery] 요소에 래퍼로 감싸고 해제하기 - wrap(),unwrap() 본문
wrap();
어떤 요소 안에 있는 요소를 래퍼로 감싼다.
$(document).ready(function() { $('#target').wrap("<a href='http://www.konantech.com' target='_blank'></a>"); }); <img id="target" src="http://www.konantech.com/images/client/products/130508/konanDocruzer_logo.gif"></img> |
unwarp();
래퍼로 감싸진 요소를 해제 한다.
$('#target').unwrap(); |
이 외에도, wrapInner(),wrapAll()가 있다.
대충 봤는데 별로 사용하지 않을 것 같다. 사용할 일이 생기면 정리해야겠다.
'jQuery > 자주쓰는함수' 카테고리의 다른 글
[jQuery] 데이터 전송 - serialize(), serializeArray() (0) | 2013.06.30 |
---|---|
[jQuery] getJSON() (0) | 2013.06.23 |
[jQuery] ajax()로 xml데이터 가져오기. (0) | 2013.06.23 |
[jQuery] 요소 바꾸기 - replaceAll(),replaceWith() (0) | 2013.06.04 |
[jQuery] 요소 지우기 - remove(),empty() (0) | 2013.06.04 |