2-4 체이닝_필터 end() eq() add() hide() show() DOCTYPE html>Insert title here//필터를 계속 줄 수 있다. (필터의 필터)$(function(){$('h1').css('background','orange').filter(':odd').end().css('color','red').filter(':even').css('color','white') }); Header-0Header-1Header-2Header-3Header-4Header-5 DOCTYPE html>Insert title here//필터를 계속 줄 수 있다. (필터의 필터)$(function(){$('h1').eq(0).css('background','orange');$('h1').eq(1).css('background','pink');$('h1').eq(-1).cs.. 더보기 2-4 체이닝 DOCTYPE html>Insert title here//필터를 계속 줄 수 있다. (필터의 필터)$(function(){$('h1').css('background','orange').filter(':even').css('color','red').filter(':even').css('color','blue')});Header-0Header2-0Header-1Header2-1Header-2 더보기 2-3 filter(function(index)) DOCTYPE html>Insert title here$(function(){$('h3').filter(function(index){return index % 3 == 0;// index가 3의 배수일 경우}).css({ backgroundColor:'orange', color:'yellow'});}); Header-0Header-1Header-2Header-3Header-4Header-5Header-6 더보기 이전 1 ··· 7 8 9 10 11 12 13 ··· 18 다음