$(".csstablelisttd").live('mousedown', function (e)
{
var rowIndex = $(this).closest("tr").index();
var colIndex = $(e.target).closest('td').index();
$('#contentPlaceHolderMain_tableAppointment tr').eq(rowIndex).find('td').eq(colIndex).addClass('csstdhighlight');
});
我必须向 td 添加类,除了每行的第一和第二列