Firefox加载底部屏幕永不停止

时间:2015-02-06 01:34:50

标签: javascript css backbone.js marionette

我尝试使用window.open()在Firefox中打开一些东西,当我加载窗口时,加载屏幕永远不会停止。我仍然不明白为什么。请劝告。

截图http://s3.postimg.org/eq0r6rr03/screenshot.png

我的代码:

        var html = this.compilePageHtml(); //We get some HTML code
        this._previewWindow = window.open("about:blank", "PreviewWindow","width=320, height=570, scrollbars=yes" ); 
        this._previewWindow.document.write(html); //Loads HTML in new window popup

导致此问题的原因是什么? 在Chrome上,Safari可以正常使用

谢谢, - R

1 个答案:

答案 0 :(得分:2)

我发现问题是document.open(),我需要关闭document.close()才能停止传输。