//contentPane.makeHighlight('#cccccc'); //使点击的行变成灰色
//鼠标经过
$(".x-table tr").mousemove(function() {
//所在行背景色:红色
$(this).css("background-color","#cccccc");
//所在行单元格字体:18px
$(this).find("td").css("font-size","12px");
});
//鼠标点击
$(".x-table tr").mousedown(function() {
//所在行背景色:黄色
$(this).css("background-color","#cccccc");
//所在行单元格字体:18px
$(this).find("td").css("font-size","12px");
});
//鼠标离开
$(".x-table tr").mouseout(function() {
//所在行背景色:白色
$(this).css("background-color","white");
//所在行单元格字体:12px
$(this).find("td").css("font-size","12px");
});上面是文档的代码,想请问下,如何修改成当用户鼠标离开时不变白色,而是当用户在下一行点击时才变白色有设置了重复与冻结