我想实现鼠标悬浮,表格行背景色变更,离开恢复原色,但是我的表格是灰白间隔的,我用这个脚本只能实现选中白色部分底色变更,灰色行没有反应,请问有大神知道这个要咋修改这个脚本吗?var oldColor = ""; $(".x-table tr").mouseover(function () { oldColor = $(this).css("background-color"); $(this).css("background-color","#f0f3f7"); }).mouseout(function () { $(this).css("background-color",oldColor); });}