- 注册时间
- 2013-12-30
- 最后登录
- 2014-4-17
- 阅读权限
- 10
- 积分
- 77
- 精华
- 0
- 帖子
- 18
|
lost 发表于 2014-3-26 16:18
1.那你加延时的时候断点看看为什么会这样的问题,是不是你的时机问题?你光描述我们也没法看出原因。
2. ...
一样的
$.ajax({
url: url,
type: "post",
success: function (text) {
form.clear();
var o = mini.decode(text);
form.setData(o);
mini.mask({
el: document.body,
cls: 'mini-mask-loading',
html: '加载中...'
});
setTimeout(function () {
mini.unmask(document.body);
}, 2000);
editor.setContent(o.content);
},
error: function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
}
}); |
|