0
我使用tablesorter來排序我的表html表。有沒有可能使用tablesorter獲得列索引和排序順序?在使用tablesorter執行排序時獲取列索引和排序順序?
我使用tablesorter來排序我的表html表。有沒有可能使用tablesorter獲得列索引和排序順序?在使用tablesorter執行排序時獲取列索引和排序順序?
你能否分享一些關於何時需要這些信息的更多細節。
我寫了這個答案,假設你想排序後的排序信息。在此示例中,僅被返回所述第一排序列信息,但所有排序列將包含內table.config.sortList
變量(demo):
$(function() {
$('table')
.on('sortEnd', function(){
var currentSort = this.config.sortList,
firstColumn = currentSort[0][0],
firstColumnDirection = currentSort[0][1] === 0 ? 'Ascending' : 'Descending';
console.log('column = ' + firstColumn, ', direction = ' + firstColumnDirection);
})
.tablesorter({
theme: 'blue'
});
});
的重複https://stackoverflow.com/questions/1955980/how-對獲得電流排序順序從 - 的tablesorter-插件 –