我尝试使用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
答案 0 :(得分:2)
我发现问题是document.open(),我需要关闭document.close()才能停止传输。