$.ajax({
???????????????url: ‘Ajax_JQuery_BizBatch.aspx?action=SetBiz_CurrencyStockCustomerTraceSE‘,
???????????????type: ‘POST‘,
???????????????data: data,
???????????????async: true,
???????????????cache: false,
???????????????beforeSend: function () {
???????????????????$(‘#btnSelfTail‘).linkbutton(‘disable‘);
???????????????},
???????????????error: function (XMLHttpRequest, textStatus) {
??????????????????? $("#btnSelfTail").linkbutton(‘enable‘);
???????????????},
???????????????success: function (RetData, textStatus) {
??????????????????????? $("#btnSelfTail").linkbutton(‘enable‘);
???????????????}
?????????????}
???????????});
ajax同步禁用按钮
原文地址:https://www.cnblogs.com/xiaxingxing/p/9335473.html