其中REPORT1是控件的名字
setTimeout(function() {
//鼠标经过
$(".REPORT1table tr").mousemove(function() {
//所在行背景色:红色
$(this).css("background-color","#E5F4FF");
});
//鼠标离开
$(".REPORT1table tr").mouseout(function() {
//所在行背景色:白色
$(this).css("background-color","#ffffff");
})
},1000);