写在报表块初始化事件,把REPORT3改成你的报表块的名字 大写
setTimeout(function() {
$(".x-table.REPORT3table tr").mousemove(function() {
//所在行背景色:红色
$(this).find("td").css("background-color","red");
//所在行单元格字体:18px
$(this).find("td").css("font-size","18px");
});
$(".x-table.REPORT3table tr").mouseout(function() {
//所在行背景色:白色
$(this).find("td").css("background-color","white");
//所在行单元格字体:12px
$(this).find("td").css("font-size","12px");
});
}, 1000)