我在进行 Ajax 调用的复选框上有一个 jQuery 更改事件,然后突出显示该复选框所属的表行。当 Ajax 调用报告错误时,我遇到了问题 - 在这种情况下,我想反转复选框单击(我正在that.prop("checked", !that.prop("checked"))
这样做)。但是,发生的事情是它进入了调用更改事件的无限循环。如您所见,为了阻止这种行为,我尝试设置一个名为 ajaxInProgress 的变量,但它似乎并没有像我希望的那样工作。任何人都可以提供替代方法或发现错误吗?我不确定我重置复选框的方式是否必要 - 是否可以重置复选框并仍然阻止更改事件启动?
var ajaxInProgress = false; //add this to stop recursive calls when errors occur
jQuery(document).ready(function() {
jQuery(".cc").change(function (e) {
if (ajaxInProgress) return;
var mode = "remove"
if (jQuery(this).attr("checked")) {
mode = "add"
}
//grab the application ID from the checkbox ID
var thisApp = this.id.substr(3);
var that = jQuery(this);
ajaxInProgress = true;
jQuery.get("/particular/edit-ajax", { application_id: thisApp,
party_id: 1920,
party_rel_id: 21,
mode: mode} , function(response) {
if (response == 0) {
that.closest('tr').removeClass('even').removeClass('odd').addClass('highlight');//highlight the tr
} else {
e.preventDefault();
that.prop("checked", !that.prop("checked")); //reset the checkbox if there was an error
alert("Please contact support - couldn't update database for application "+thisApp+". Response was: "+response);
}
});
ajaxInProgress = false;
});
});