IE 9在渲染时冻结

时间:2015-08-20 07:57:42

标签: internet-explorer internet-explorer-9

我的网站有问题:external storage 它无处不在(chrome,IE 8,11,firefox,iphone,windows phone), 但IE 9一直冻结在所有页面上。 我尝试使用IE 9的大约3-4台计算机上的这个网站,它是相同的。 开发人员控制台很清楚。

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案,那是因为respond.js,所以我检查浏览器并且不要在IE中包含响应。

var a = /(msie)([\ w。] +)/;

        if (!a.test( navigator.userAgent.toLowerCase() ) ) {
                $.getScript(respond_script,function( data, textStatus, jqxhr ) {
                    console.log( "respond.js :"+ textStatus ); // Success
                });
        }
        else {
            console.log("IE detected, oh god");
        }

希望有人帮忙。