2012-11-20 82 views
0

我在我的代碼中使用了來自this gist的固定標題。 我希望能夠單擊標題列並根據單擊哪個列標題對錶進行排序。但我無法掌握列上的點擊事件。在固定標題上點擊事件

+1

試試這個是你想要的:http://jsfiddle.net/NWV73/23/ – Jai

回答

2

試試這個

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

DEMO

+0

@ Sheikh Heera謝謝。它現在有效。 – 8GB

+0

@ 8GB,歡迎您:-) –