반응형
제이쿼리 children()
-
제이쿼리 jQuery closest(), parant(), siblings(), children()jQuery 2018. 3. 3. 20:07
HTML 예제 1 2 3 4 5 6 7 8 9 10 11 cs 1. parent() 1 2 3 4 5 $(document).on("click","#me",function(){ $(this).parent().css("background-color","red"); }); Colored by Color Scripter cs 결과 : grandmom , mom의 div색이 red로 변경됨. parent() 함수는 부모들을 호출한다. grandmom만 호출하려면 $(this).parent().parent()로 호출하는 법이 있지만 index로 호출하는 eq() 함수가 있다. $(this).parent().eq(2); 이렇게 하면 2번째 상위의 parent 요소가 선택된다. 2. closest() 1 2 3 4 5..