---鼠标悬停变色、离开后恢复
$(".x-table tr").mouseover(function () {
$(this).attr("background-oldcolor",$(this).css("background-color"));
$(this).css("background-color","#f0f3f7");
}).mouseout(function () {
$(this).css("background-color",$(this).attr("background-oldcolor"));
});
}
------
写在加载结束事件里