首页 > 代码库 > 《JS 隔行换色》

《JS 隔行换色》

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

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

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

    });

});

《JS 隔行换色》