[code]$(function () {$(\"tr:gt(0)\").hover(function() {//获取原有行的背景颜色current = $(this).css(\"backgroundColor\");//鼠标移入$(this).css(\"backgroundColor\", \"aqua\");},function() {//鼠标移出$(this).css(\"backgroundColor\", current);});})
[code]$(function () {$(\"tr:gt(0)\").hover(function() {//获取原有行的背景颜色current = $(this).css(\"backgroundColor\");//鼠标移入$(this).css(\"backgroundColor\", \"aqua\");},function() {//鼠标移出$(this).css(\"backgroundColor\", current);});})