ajax同步禁用按钮

$.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');
}
}
});

posted @ 2018-07-19 14:10  选个流氓当职业  阅读(214)  评论(0)    收藏  举报