我有一个 4 列的表,我希望前 3 列可由用户排序,但不是第 4 列,这工作正常。我还希望第三列默认按 ASC 顺序排序。这部分不起作用,默认情况下我无法对任何列进行排序,也无法弄清楚我的语法有什么问题:
$(document).ready(function() {
$(".table-sortable").dataTable({
aaSorting: [],
bPaginate: false,
bFilter: false,
bInfo: false,
bSortable: true,
bRetrieve: true,
aoColumnDefs: [
{ "aTargets": [ 0 ], "bSortable": true },
{ "aTargets": [ 1 ], "bSortable": true },
{ "aTargets": [ 2 ], "asSorting": [ "asc" ], "bSortable": true },
{ "aTargets": [ 3 ], "bSortable": false }
]
});
});
这是我一直在工作的:http ://datatables.net/usage/columns