/*控制隔行换色的JS*/ $().ready(function(){
$("tr").each(function(i){
this.style.backgroundColor = ['#F8F8F8', '#F2F2F2'][i % 2]
});