$("#test").parent(); // 한 단계 위로
$("#test").children(); // 한 단계 밑으로
$("#test").prev(); // 이전
$("#test").next(); //다음

$("#test").parent().parent().remove();
$("#test").parent().next().remove();
$f = $("#test").parent().parent().next(); - 변수로 지정도 가능

'javascript, jquery' 카테고리의 다른 글

순서 - first / eq / last  (0) 2014.10.02
바꾸기 - replaceWith  (0) 2014.10.02
마우스 오버.아웃 - hover  (0) 2014.10.02
클래스 추가.삭제 - addClass / removeClass  (0) 2014.10.02
이벤트 추가, 제거 - bind / unbind  (0) 2014.10.02
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,