リストを個数毎に区切ってスタイルを指定する
$('li').each(function(index){ //3つごとに設定 if(Math.floor(index/3)%2==0){ //classを付加 $(this).css('color','blue'); }else{ $(this).css('color','red'); }; });
WPなど案件構築覚書
$('li').each(function(index){ //3つごとに設定 if(Math.floor(index/3)%2==0){ //classを付加 $(this).css('color','blue'); }else{ $(this).css('color','red'); }; });