我在代码中使用了来自this gist的固定标头。 我希望能够单击标题列并根据单击的列标题对表进行排序。但我无法掌握列上的点击事件。
答案 0 :(得分:2)
试试这个
$('.fixed-table').on('click', '.header-fixed th', function(){
var th=$(this).index();
alert('Column number is : ' + th + ' and text is : ' + $(this).text());
});