我正在发出一个ajax请求,处理服务器端可能需要很多时间。所以我想在请求过程中显示加载图像。但是在ajax请求时没有显示加载图像。
var ref = createAjaxRequest();//Ajax req is created here...
if(ref){
showLoadingImg();
ref.open('POST','x.jsp',false);
ref.onreadystatechange = eventStateChange;
ref.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
ref.setRequestHeader("Connection", "keep-alive");
ref.send();
}
else{ alert("Your browser does not support this feature");
}
function eventStateChange(){
if(ref.readyState==4 ){
//processing response here......
hideLoadingImg();
}
}
function showLoadingImg();{
/* <div id="ajaxLoading">(with background image is in page)
It is displayed properly when I set display:inline
manually through developer tools of a browser.</div>
*/
document.getElementById('ajaxLoading').style.display='inline';
}
function hideLoadingImg();{
document.getElementById('ajaxLoading').style.display='none';
}
有什么不对的吗?
我尝试调试并发现:
虽然
showLoadingImg()
调用了 beforeopen()
方法,但加载图像仅在ref.readyState==2
.readyState==2
但不幸的是,和之间的时间间隔readyState==4
非常小,加载图像立即被隐藏。
因此用户看不到加载图像...
所以,我怀疑的是,除非脚本转到readyState==2
.