您的位置:首页 > 其它

ajax加入遮罩

2018-02-27 17:56 197 查看
beforeSend: function () {
$.messager.progress({
title: '提示',
msg: '系统处理中,请稍候……',
text: ''
});
},
complete: function () {
$.messager.progress('close');
},


全文$.ajax({
type : "post",
url : ctx + "/itemUnqualified/saveRejCheck",
data : $('#supplierModifyForm').serialize(),
async : false,
beforeSend: function () {
$.messager.progress({
title: '提示',
msg: '系统处理中,请稍候……',
text: ''
});
},
complete: function () {
$.messager.progress('close');
},
success : function(data) {
if(saveOrSubmit == "0"){
alert("保存成功!");
var billNo = data.billNo;
window.location.href="<%=request.getContextPath()%>/itemUnqualified/toEdit?billNo="+billNo;
}else{
alert("提交成功!");
var billNo = data.billNo;
window.location.href="<%=request.getContextPath()%>/itemUnqualified/toView?billNo="+billNo;
}

}
});
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: