2011-12-24 61 views

回答

13

根据DataTabe的reference manual,这应该工作:

$('#example').dataTable({ 
    "aaSorting": [] 
}); 
+0

亘古不变的工... – 2014-03-27 09:42:09

0

试试这个:

$(document).ready(function() { 
     $('#example').dataTable({ 
      "order": [[3, "desc"]] 
     }); 
    }); 
+4

请解释一下你的代码是如何回答这个问题。 – 2014-05-02 18:56:21