已知有以下代码 ///////////////////////////////鼠标经过/////////////////////////// $(".x-table td").mousemove(function() { //所在行背景色:红色 $(this).css("background-color","red"); //所在行单元格字体:18px $(this).css("font-size","10px"); }); //鼠标点击 $(".x-table td").mousedown(function() { //所在行背景色:黄色 $(this).css("background-color","yellow"); //所在行单元格字体:18px $(this).css("font-size","12px"); }); //鼠标离开 $(".x-table td").mouseout(function() { //所在行背景色:白色 $(this).css("background-color","#003366"); //所在行单元格字体:12px $(this).css("font-size","10px"); }); 我想让3行以上不产生效果 。该 怎么做? |