用这个试试:
setTimeout(function() {
//选择时背景颜色变量
var oldColor="";
var newColor = "rgb(255, 0, 0)";
$('.x-table td').mouseover(function() {
oldColor =$(this).css('background-color');
console.log(oldColor);
if($(this).css('background-color') != newColor) {
$(this).css('background', newColor);
}
});
$('.x-table td').mouseout(function() {
$(this).css('background', oldColor);
} );
}, 300);