我正在进行ajax调用,我的代码如下所示
function 1()
{
try {
$("#progressbar").show();
$("#ProgressbarContainer").show();
var params = { "clientID": self.clientid()};
$.ajax({
type: "GET",
url: "http:fddsfddgdgdg",
data: params,
contentType: 'application/json',
async: false,
dataType: 'json',
success: function (response) {
$("#progressbar").hide();
$("#ProgressbarContainer").hide();
},
error: function (ErrorResponse) {
$("#progressbar").hide();
$("#ProgressbarContainer").hide();
}
});
}
catch (err) {
self.lblError.push(err.message);
$("#progressbar").hide();
$("#ProgressbarContainer").hide();
}
}
}
function 2()
{
//similar like above
jquery progress bar show
2nd ajax call with using json
jquery progress bar hide
}
现在可能我同时有超过2个ajax调用。现在,当我在Mozilla中看到它时,它的工作正常,但在IE中,进度条不起作用。
你有什么想法吗?