单击固定标题上的事件

时间:2012-11-20 19:21:29

标签: jquery fixed-header-tables

我在代码中使用了来自this gist的固定标头。 我希望能够单击标题列并根据单击的列标题对表进行排序。但我无法掌握列上的点击事件。

1 个答案:

答案 0 :(得分:2)

试试这个

$('.fixed-table').on('click', '.header-fixed th', function(){
    var th=$(this).index();
    alert('Column number is : ' + th + ' and text is : ' + $(this).text());
});

DEMO