我选择并突出显示了第 1 行,然后选择第 2 行被突出显示;当我选择第 2 行时,我只想用 CSS 突出显示第 2 行,第 1 行应该是默认的,或者可能是第 1 行,我想删除 CSS。请帮忙
onSelectRow: function(id){
var rowData = $(this).getRowData(id);
var memberId= rowData['memberId'];//replace name with any column
if(id!==lastSel){
$(this).find('.ui-state-highlight').css({background:'#80BFFF'});
lastSel=id;
}
}