我有一个用户需要提交到服务器的网络表单。服务器响应可能需要几秒钟。所以我想向用户展示一个微调器,这样所有其他字段都是灰色的,并且用户在网络表单中进行任何更改,并且在中心我有一个不断旋转的微调器..请帮助我我应该如何继续..
问问题
1057 次
1 回答
2
这是我的完整解决方案,使用 ajax 发送查询(如果您使用标准表单发布离开页面,则无法使用微调器):
loading = {
count: 0
};
loading.finish = function() {
this.count--;
if (this.count==0) this.$div.hide();
};
//
loading.start = function() {
this.count++;
if (!this.$div) {
var html = '<div style="position: fixed;z-index:100;left:0;top:0;right:0;bottom:0;background: black;opacity: 0.6;">';
html += '<table width=100% height=100%>';
html += '<tr><td align=center valign=middle>';
html += '<img src=img/loading.gif>';
html += '</td></tr>';
html += '</table></div>';
this.$div=$(html);
this.$div.prependTo('body');
}
setTimeout(function(){
if (loading.count>0) loading.$div.show();
}, 500);
};
// the function to call
askUrl = function(url, success) {
var httpRequest = new XMLHttpRequest();
httpRequest.onreadystatechange = function() {
if (httpRequest.readyState === 4) {
if (httpRequest.status === 200) {
success(msg);
}
loading.finish();
}
};
loading.start();
httpRequest.open('GET', url);
httpRequest.send();
};
如果您调用 askUrl 并且服务器在 500 毫秒内没有响应,则屏幕将变灰并显示一个微调器。
我在这里得到了我的 gif 微调器。
于 2012-07-18T10:34:35.510 回答