$(".x-table tr").mouseover(function(){//.x-table限制表格部分,tridx!='0'可以排除掉标题行 window.color=$(this).find("td").css("background");//将当前颜色赋值给全局变量color $(this).find("td").css("background","yellow");//将当前行下的所有td的背景色变为黄色 })$(".x-table tr").mouseout(function(){ $(this).find("td").css("background",color);//将当前行下的所有td的背景色变为原色 })目前是只能第一行固定,如何实现多行固定