$(function (){
selectServiceRow(1) ;
$(document).on('click', '#tableList', function (e){
var index = parseInt($(e.target).closest('tr').index());
if(index==0){return;}
selectServiceRow(index);
});
});
function selectServiceRow(rowIndex){
$('#tableList').find('tr').eq(rowIndex)
.removeClass('csstrred').addClass('csstablelisttdselected');
}
从上面的小提琴你看到,当我点击表中的任何行时,默认选择第一行我必须显示任何具有 id 'error' 的行都是红色的,但点击的行必须具有类 csstablelistselected' *示例: *默认情况下第一行被选中。如果我单击第 4 行,则第 1 行类显示为红色,因为 tr id 是“错误”我该怎么办。