ページをロードするときに行をクリックすると、コンソールにログが記録され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');
});
});