반응형
타겟에 새로운 요소를 추가한다.
$('새로운요소').appendTo('타겟');
[html]
<em>one</em>
<a>two</a>
<a>three</a>
<b>four</b> <!--bold 태그-->
<a>five</a>
<em>six</em>
<div>
<span class='result'></span>
</div>
[css]
.txtStyle{font-size:14px; line-height: 20px; margin: 10px;}
[js]
$(document).ready(function(){
$('*').addClass('txtStyle');
$('em+a').css('background-color','yellow').each(function(){
$(this).appendTo('.result')
});
});
[결과화면]
선택자 em+a 는 첫번째 em태그와 형제인 a태그를 의미한다. 즉 two라는 문자열이 들어있는 태그이고 이 태그를 appenTo()를 사용하여 클래스result로 옮긴 것이므로 자리가 이동되었다.
반응형
'web > jQuary' 카테고리의 다른 글
.append() (0) | 2020.05.27 |
---|---|
[jQuery]디지털 시계 만들기(시작/종료버튼) (0) | 2020.05.26 |
[jQuery]마우스 휠 이벤트 연결하기 (0) | 2020.05.26 |
[jQuery]동영상 태그 제어-.load(), .play(), pause() (0) | 2020.05.26 |
[jQuery]x축,y축 위치 알아내기-.offset().top과 .offset().left (0) | 2020.05.26 |
댓글