我不知道如何解决这个问题,我尝试阅读很多帖子,但没有一个答案。
我需要打开一个新窗口,其中包含已编码的页面(在同一域内)并添加一些内容。
问题是,如果我使用OpenWindow.write()
的页面尚未加载,或者它会覆盖所有内容,并且只会出现通过 write 添加的代码。
var OpenWindow = window.open('mypage.html','_blank','width=335,height=330,resizable=1');
OpenWindow.document.write(output);
output
是我需要附加的代码。
我需要它至少在 Firefox、IE 和 GC 上工作。
提前致谢。如果我需要使用 JQuery,这不是问题。