[JQuery] closest(), parant(), siblings(), children()
JQuery에는 선택함수가 여러개 있다. closest(), parant(), siblings(), children()가 사용되는 방법에 대해 알아볼것이다. $(this)는 #me를 기준으로 하겠다. 1.parent() $(document).on("click","#me", function(){ $(this).parent().css("background-color", "red"); }); ==> grandmom, mom 의 div 색이 red로 변경 부모들을 호출한다. 만약 grandmom만 호출하고자 한다면 $(this).parent().parent()로 호출하는 방법이 있다. 2.closest() $(document).on("click","#me",function(){ $(this).closest()...