参考https://help.fanruan.com/finereport8.0/doc-view-1201.html
==========
var oldColor = "rgb(255, 255, 255)";
var newColor = "rgb(255, 0, 0)";
$('.x-table tr').click(function() {
if($(this).css('background-color') != newColor) {
$(this).css('background', newColor);
} else if($(this).css('background-color') == newColor) {
$(this).css('background', oldColor);
}
});