我的 javascript 设置如下 -
function UpdateLevelRemove() {
//Do something
var ajaxCall = $.ajax({ data: { Svc: cntnrRoot,
Cmd: 'updateLEvel',
updatePrivacyAction: 'Remove'
},
dataType: "text",
context: this,
cache: false
});
$.when(ajaxCall).then(function () {
updateLevelRemoveSuccess(recordID)
});
}
function updateLevelRemoveSuccess(recordID) {
//Do something
__doPostBack('', null);
}
我觉得每次我调用具有这种结构的函数时,我的进程都会变慢并且我得到一个“停止运行脚本?” 错误。
我在正确的道路上还是可以添加一些东西来停止该脚本?喜欢处理 .done 还是 .always?