我有我的客户数据表,它有五列。一列包含超链接。其中一列是复选框。我希望当用户单击该行时,应该选择该行(这意味着行颜色应该改变并且应该选中复选框)。我可以用下面的代码片段来做
$("#customer").on('click', $.fn.getDataTablesClickHandler("#selectAll"));
//where customer is the html div associated with dataTable and call the same function which gets triggered
//on call of selectAll html element. Inside that function i toggle the class of row
它工作得很好。但我的问题是我不希望在单击其中一列内的链接时发生这种情况(即行选择)。我怎么能做到这一点?所以基本上我怎样才能限制点击单元格中的某些链接或
点击单元格时触发 getDataTablesClickHandler?