//悬浮
$(".x-table tr").mouseover(function() {
window.color=[];
$(this).find("td").each(function(){
window.color.push($(this).css("background-color"));
});
$(this).find("td").css("background", "red");
});
//离开
$(".x-table tr").mouseout(function() {
$(this).find("td").each(function(){
$(this).css("background", window.color.shift());
});
});