//悬浮$(".x-table tr").mouseover(function() {window.color = $(this).find("td").css("background-color");$(this).find("td").css("background", "red");});//离开$(".x-table tr").mouseout(function() {$(this).find("td").css("background", color);});----------------如何修改上面的加载结束方法,能实现使原来有颜色的单元格鼠标离开后仍保持原色,而不是变成rgba(0,0,0,0)