- 注册时间
- 2013-8-13
- 最后登录
- 2017-4-17
- 阅读权限
- 10
- 积分
- 1519
- 精华
- 0
- 帖子
- 418
 
|
felt 发表于 2016-4-8 14:46 
请提供完整html页面重现你的问题
就是一个按钮的onclick事件里面有这个代码
mini.mask({
el: document.body,
cls: 'mini-mask-loading',
html: '加载中...'
});
$.ajax({
url: "../Data/DataServiceTaskFlowInfo.aspx?method=GetConfig_ReportDataByTemplateID",
data: { TemplateID: TemplateID, TemplateIDType: TemplateIDType },
type: "post",
success: function (text) {
var data = mini.decode(text);
grid2.setData(data);
setTimeout(function () {
mini.unmask(document.body);
$("#Button1").attr("disabled", false);
}, 300);
},
error: function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
}
}); |
|