提交数据加载中缓冲提示
Posted xianz666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了提交数据加载中缓冲提示相关的知识,希望对你有一定的参考价值。
$(‘#healthResultCorrelationCompanyAddForm‘).form(‘submit‘, {
onSubmit: function () {
$.messager.progress({
title: ‘提示‘,
msg: ‘数据提交中,请稍候……‘,
text: ‘‘
});
return true;
},
url: ‘<%=basePath%>xyData/health/addCorrelationCompany.do‘,
success: function (data) {
$.messager.progress(‘close‘);
data = eval("(" + data + ")");//JSON字符串转对象
$.messager.show({
title: ‘提示‘,
msg: data.msg,
showType: ‘show‘
});
$(‘#healthResultCorrelationCompanyAdd‘).dialog(‘close‘);
$(‘#healthResultCorrelationCompanyTablelist‘).datagrid(‘reload‘);
},
error: function () {
$.messager.show({
title: ‘提示‘,
msg: data.msg,
showType: ‘show‘
});
}
});
以上是关于提交数据加载中缓冲提示的主要内容,如果未能解决你的问题,请参考以下文章