我有一个问题,在我点击按钮后显示此警告:
DataTables warning: Unable to re-initialise DataTable. Please use the API to make any configuration changes required.
这个警报的含义是什么?我该怎么做?我希望点击按钮后数据网格可以显示数据......
答案 0 :(得分:0)
$("#show").click(function(event){
if (typeof oTable=='undefined'){
oTable = $("#datalist").dataTable({
.
.
.
});
}else{
oTable.fnDraw();
}
});