以下是我用来通过JavaScript创建内容并将内容添加到新窗口的代码:
var newWindow = window.open();
newWindow.document.title = "This is my new window";
newWindow.document.body.innerHTML = "<center>This is content added from the parent window</center>";
这适用于我测试的每个浏览器,除了Firefox。当我打开firebug时,它会显示从父级添加的html但是它没有在页面上显示它? 难道我做错了什么?
答案 0 :(得分:3)
使用newWindow.document.write()
代替newWindow.document.body.innerHTML = ""
。