wrap() – 대상 요소를 감쌈
unwrap() – 감싸고 있는 부모를 삭제
wrapInner() – 대상 요소의 하위 요소를 감쌈
wrapAll() - 대상 요소들을 한번에 감쌈
$('#wrapBtn').click(function(){
$('#target').wrap($('#source'));
});
$('#unwrapBtn').click(function(){
$('#innerTarget').unwrap();
});
$('#wrapInnerBtn').click(function(){
$('#target').wrapInner($('#source'));
});
$('#wrapAllBtn').click(function(){
$('#target').wrapAll($('#source'));
});
'Javascript' 카테고리의 다른 글
jQuery replaceAll(), replaceWith() (0) | 2013.04.01 |
---|---|
jQuery detach(), empty(), remove() (0) | 2013.04.01 |
jQuery after(), insertAfter(), before(), insertBefore() (0) | 2013.04.01 |
jQuery append(), appendTo(), prepend(), prependTo(), text(), html() (0) | 2013.04.01 |
jQuery bind(), unbind(), trigger() (0) | 2013.04.01 |
개의 댓글