用jquery实现单双行变色以及鼠标经过时也同时变色

 $(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");});
  });  //这部分代码实现鼠标经过时背景颜色变色

你可能感兴趣的:(用jquery实现单双行变色以及鼠标经过时也同时变色)