进度条在ajax调用期间不在IE上工作

时间:2013-02-04 10:07:45

标签: jquery html

我正在进行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中,进度条不起作用。

你有什么想法吗?

0 个答案:

没有答案