加载页面时,如果单击一行,它会记录到控制台clicked
。
但是,如果您对表格进行排序(单击表格标题),tr
如果您尝试单击行,则不会触发单击事件。
我正在使用这个插件:tablefixedheader
jQuery
$(document).ready(function(){
$("table.ex").fixheadertable({
caption : 'Tarefas Disponíveis',
showhide : false,
height : '265',
zebra : true,
zebraClass : 'ui-state-default',
sortable : true,
sortedColId : 0,
dateFormat : 'Y/m/d',
pager : true,
rowsPerPage : 25,
colratio : [110,150],
minColWidth : 110,
resizeCol : true
});
// problem with this click
// The event isn't triggered:
$("table.ex tr").click(function(){
console.log('clicked');
});
});