
参考--https://bbs.fanruan.com/thread-134372-1-1.html
根据实际情况调整,代码中的report0根据实际情况变化
report0初始化后事件

setTimeout(function() {
//鼠标经过时
$(".x-table.REPORT0table td").mousemove(function() {
//所在单元格字体颜色为红色
$(this).css("color", "red");
//所在单元格背景为蓝色
$(this).css("background-color", "blue");
//所在单元格字体加粗
$(this).css("font-weight", "bold");
//所在单元格添加下划线
$(this).css("text-decoration", "underline");
//所在行单元格字体:11px
$(this).find("td").css("font-size", "11px");
});
//鼠标离开
$(".x-table.REPORT0table td").mouseout(function() {
//所在单元格字体颜色为黑色
$(this).css("color", "black");
//所在单元格背景为白色
$(this).css("background-color", "white");
//所在单元格字体正常
$(this).css("font-weight", "normal");
//所在单元格无下划线
$(this).css("text-decoration", "none");
//所在行单元格字体:9px
$(this).find("td").css("font-size", "9px");
});
}, 100);