$(function() { // trの中で奇数番目のものを対象にする $('tr:odd').css({ backgroundColor:'#aaaaaa' }); // trの中で偶数番目のものを対象にする $('tr:even').css({ backgroundColor:'#ffffff' }); });