jQuery 메서드 정리 ① size()recthellowhellowhellow $(document).ready(function(){var len = $('#box > ul > li').size();console.log(len); // 3출력}); ② eq(index)rect12345 eq("메서드인자 숫자 ") 메서드를 이용하여 엘리멘트를 선택. $(document).ready(function(){var el = $('#box > ul > li').eq(2);el.css('color','red');consloe.log(el);}); ③ first() , last()rect1 // first()2345 // last() $(document).ready(function(){var el = $('#box > ul > li'); va.. 더보기 이전 1 다음