0

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

4

1 回答 1

2

试试这个

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

演示

于 2012-11-20T19:35:33.623 回答