javascript脚本unescape挂起IE和Chrome而不是Firefox

时间:2011-06-03 15:18:22

标签: javascript internet-explorer

以下脚本请求似乎在除Firefox之外的任何浏览器中都有问题。

<!DOCTYPE html>
<html>
    <head>
        <title>Browser Delay</title>
        <script type="text/javascript"  src="http://www.google.com/jsapi"></script>
        <script type="text/javascript">
            google.load("jquery", "1.4.4");
        </script>
    </head>
    <body>
        <div id="logicbuy_ad">
            <!-- Problem is here!!!!! -->
            <script type="text/javascript" src="http://www.symbiosting.com/LogicBuy/content-syndicate-laptopmag.php"></script>
        </div>
    </body>
</html>

当脚本加载时,即使在iframe中,IE和Chrome似乎也会挂起,直到脚本完成。

有没有办法加载这个脚本,以便它不会停止/挂起浏览器?

1 个答案:

答案 0 :(得分:0)

似乎只有在从本地页面加载脚本时才会出现问题。 (即C:\ Users {username} {Code Base} \ index.html)

我在IIS上托管文件后,问题就消失了。

我仍然非常好奇为什么在显示本地文件而不是托管版本时脚本会挂起