要求:我有一段类似于以下代码的代码。我想在单击保存按钮后在叠加层中显示进度条。一旦我收到来自ajax呼叫的响应,我会显示一条警告,显示操作成功。
问题:叠加(进度条)仅在我们有得到了ajax调用的响应,我们显示警报。当ajax呼叫被处理时,它是不可见的。
我在这里做错了什么或这是预期的行为?我正在使用纯JavaScript。我无法使用任何外部库来执行此操作。
<script>
function save(){
document.getElementById('overlaydiv').style.display = 'block';
document.getElementById('progressBarDiv ').style.display = 'block';
var URL = 'some url';
ajaxFunction(URL, false);
}
function ajaxFunction(URL, isAsynchronousCall){
var xmlHttp;
var callTypeFlag = true; // is an Asynchronous Call
if(isAsynchronousCall != null){
callTypeFlag = isAsynchronousCall;
}
try{
if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
} else if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
}catch (e){
alert("Your browser does not support AJAX!");
return false;
}
xmlHttp.open("GET", URL, callTypeFlag);
xmlHttp.onreadystatechange = function(){responseProcessor(xmlHttp)};
xmlHttp.send(null);
}
function responseProcessor(xmlHttp){
//If the readystate is 4 then check for the request status.
if (xmlHttp.readyState == 4) {
if (xmlHttp.status == 200) {
alert('Settings saved successfully');
window.close();
opener.location.href='new URL';
}
}
}
</script>
<div id="overlaydiv" style="display:none"/>
<div id="progressBarDiv" style="display:none">
<img border="0" src="progressBar.gif"/>
</div>
<div>
<table>
<tr>
<td>
<input type="button" onclick="save()"/>
</td>
</tr>
</table>
</div>
答案 0 :(得分:2)
调用ajaxFunction()
时稍加延迟function save(){
document.getElementById('overlaydiv').style.display = 'block';
document.getElementById('progressBarDiv ').style.display = 'block';
setTimeout(ajaxFunction, 50);//5,10,20,30,40 will do
}
答案 1 :(得分:0)
看来问题是因为我正在使用同步ajax调用。我将调用更改为异步,现在没有问题。