$(document).ready(function(){
$("#t1 tr:gt(0):even").attr("bgColor","#ffffff");$("#t1 tr:gt(0):odd").attr("bgColor","#eeeeee"); //这部分代码实现单双行背景色变色
$("#t1 tr:not(:first)").hover(function(){$(this).attr("bgColor","#f4e088");},function(){$("#t1 tr:gt(0):even").attr("bgColor","#ffffff");$("#t1 tr:gt(0):odd").attr("bgColor","#eeeeee");});
}); //这部分代码实现鼠标经过时背景颜色变色