在jquery Datatables中是否可以使用服务器端脚本定义列?
我需要这样的东西
必须从服务器加载包含日期的列.
然后列数可以变化.
最佳答案
我想我找到了你想要的东西
原文链接:https://www.f2er.com/jquery/428578.html我会粘贴一些代码,发布一个链接到类似的Q’,你将获得更多的信息.…..
$.ajax( {
"url": 'whatever.PHP',"success": function ( json ) {
json.bDestroy = true;
$('#example').dataTable( json );
},"dataType": "json"
} );
其中json是这样的
{
"aaData": [
[ "2010-07-27 10:43:08","..."],[ "2010-06-28 17:54:33",[ "2010-06-28 16:09:06",[ "2010-06-09 19:15:00","..."]
],"aaSorting": [
[ 1,"desc" ]
],"aoColumns": [
{ "sTitle": "Title1" },{ "sTitle": "Title2" }
]
}