答案 0 :(得分:0)
如果您的ajaxSource类似于:
{
"aaData": [
{
a:"Trident",
b:"Internet Explorer 4.0",
c:"Win 95+",
d:4,
e:"X"
} // [...]
],
"aoColumns": [
{
"mData": "d",
"sDefaultContent": 0
},
{
"mData": "a",
"sDefaultContent": "-"
} //[...]
]}
你可以打这个电话:
$.getJSON('ajaxSource.php',function(json) {
json.bDestroy = true;
$('#example').dataTable(json);
});