无法在javascript中写入新的弹出窗口

时间:2011-10-30 12:47:00

标签: javascript

我写了一个firefox插件。 我有代码:

var myWindow=window.open('','_blank','width=200,height=100');
myWindow.document.write("<p>lala</p>");  

窗口确实已创建,但没有任何内容写入。 那是为什么?

1 个答案:

答案 0 :(得分:0)

从我记得你必须手动打开然后关闭文件:

var myWindow=window.open('','_blank','width=200,height=100');
myWindow.document.open();
myWindow.document.write("<p>lala</p>");  
myWindow.document.close();