是否可以在数据表 ajax 调用成功时调用 javascript 函数。这是我尝试使用的代码,
var oTable = $('#app-config').dataTable(
{
"bAutoWidth": false,
"bDestroy":true,
"bProcessing" : true,
"bServerSide" : true,
"sPaginationType" : "full_numbers",
"sAjaxSource" : url,
"fnServerData" : function(sSource, aoData, fnCallback) {
alert("sSource"+ sSource);
alert("aoData"+ aoData);
$.ajax({
"dataType" : 'json',
"type" : "GET",
"url" : sSource,
"data" : aoData,
"success" : fnCallback
});
}
有没有可能有类似的东西,
success : function(){
//.....code goes here
}
而不是“成功”: fnCallback ------> 这是 AJAX 调用的最后一行。在此功能中,我想检查从服务器端发送的值。提前感谢您的帮助....