《JS 隔行换色》

/*控制隔行换色的JS*/ $().ready(function(){

    $("tr").each(function(i){

        this.style.backgroundColor = ['#F8F8F8', '#F2F2F2'][i % 2]

    });

});

posted @ 2014-09-01 16:58  Coca-code  阅读(165)  评论(0编辑  收藏  举报