$(".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
答案 0 :(得分:2)
答案 1 :(得分:2)
if (colIndex == 0 || colIndex == 1)
return;
这样做
答案 2 :(得分:0)