$(".x-table tr[tridx!='0']").mouseover(function(){
window.color=$(this).find("td").css("background");
$(this).find("td").css("background","yellow");
})
$(".x-table tr[tridx!='0']").mouseout(function(){
$(this).find("td").css("background",color);
})
--------------------------分隔符 你看看这俩 忘了是哪个了
//悬浮
$(".x-table tr").mouseover(function() {
window.color=[];
$(this).find("td").each(function(){
window.color.push($(this).css("background-color"));
});
$(this).find("td").css("background", "yellow");
});
//离开
$(".x-table tr").mouseout(function() {
$(this).find("td").each(function(){
$(this).css("background", window.color.shift());
});
});