js设置的鼠标悬浮变色,同时单元格设置了条件属性改变颜色。怎么修改js才能让鼠标离开时还显示条件属性改变后的颜色呢?setTimeout(function() { //鼠标悬浮 $(".x-table.排名明细table tr").mousemove(function() { //所在行背景色和字体颜色 //$(this).css("opacity","0.6"); $(this).css("background-color","rgba(14,35,69,0.6)"); $(this).find("td").css("color","#6FC8F3"); }); //鼠标离开 $(".x-table.排名明细table tr").mouseout(function() { //所在行背景色和字体颜色 $(this).css("background-color","#011738"); $(this).find("td").css("color","#ffffff"); }) },1000);