setTimeout(function() {
    //选择时背景颜色变量  
//鼠标经过//下面的报表块名称自己改  REPORT0  就是你要改的名称,要大写
$(".x-table.REPORT0table tr").mousemove(function() {
//所在行背景色:红色
        $(this).css("background-color","red");
//所在行单元格字体:18px
        $(this).find("td").css("font-size","18px");
});
//鼠标点击
$(".x-table.REPORT0table tr").mousedown(function() {
//所在行背景色:黄色
        $(this).css("background-color","yellow");
//所在行单元格字体:18px        
        $(this).find("td").css("font-size","18px");
});
//鼠标离开
$(".x-table.REPORT0table tr").mouseout(function() {
//所在行背景色:白色
        $(this).css("background-color","white");
//所在行单元格字体:12px 
        $(this).find("td").css("font-size","12px");
});
}, 1000);

