//鼠标经过 $(".x-table tr").mousemove(function() { //所在行背景色:红色 $(this).css("background-color","#6cc1f9"); //所在行单元格字体:18px $(this).find("td").css("font-size","18px"); }); //鼠标点击 $(".x-table tr").mousedown(function() { //所在行背景色:黄色 $(this).css("background-color","yellow"); //所在行单元格字体:18px $(this).find("td").css("font-size","18px"); }); //鼠标离开 $(".x-table tr").mouseout(function() { //所在行背景色:白色 $(this).css("background-color","white"); //所在行单元格字体:12px $(this).find("td").css("font-size","12px"); }); 想问一下鼠标离开怎么恢复到原来字体大小原来背景色,怎么写,一定是恢复到原生态的时候,因为每行字体大小都不一样。 比如:我原来字体大小是15,鼠标移到这行变成18,移走之后还要变成15,现在是移走就变成12了 |