标签:
//按第二列降序排序,
出现提示: Datables wrning(table id=‘example‘):Cannot reinitialise DataTable. To retrieve the
Datables object for this table,please pass eithser no arguments to the dataTable() function,
解决方法:
1、加 "bDestroy":true,和"bRetrieve": true, 只是能屏蔽提示。
2、 $(document).ready(function () {
$(‘#Todolisttable‘).dataTable().fnDestroy(); //必须加fnDestroy() 这个
$(‘#Todolisttable‘).dataTable({
"aaSorting": [
[1, "desc"] //按第二列降序排序,
] }); });
2、 $(document).ready(function () { $(‘#Todolisttable‘).dataTable().fnDestroy(); $(‘#Todolisttable‘).dataTable({ "aaSorting": [ [1, "desc"] ] }); });
标签:
原文地址:http://www.cnblogs.com/aimyfly/p/4610261.html