0 我在我的代碼中使用了來自this gist的固定標題。 我希望能夠單擊標題列並根據單擊哪個列標題對錶進行排序。但我無法掌握列上的點擊事件。在固定標題上點擊事件 來源 2012-11-20 8GB +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。 來源 2012-11-20 19:35:33 +0 @ Sheikh Heera謝謝。它現在有效。 – 8GB +0 @ 8GB,歡迎您:-) –
試試這個是你想要的:http://jsfiddle.net/NWV73/23/ – Jai