2

我在一个 Firebug 扩展上工作,它是 Firefox 扩展。从我的扩展中,我必须创建一个报告。我正在尝试打开一个新窗口并将代码写入其中。我可以使用以下代码打开一个窗口,但无法向该窗口写入任何内容。我收到一个错误“newWindow.document.write()不安全”

如果我使用document.body.innerHTML()我可以将内容写入窗口,但我想以其他方式执行此操作,因为从我的工具生成的文本中包含脚本和 css。

这是我的代码片段:

var newWindow = window.open ("","Test","width=335,height=330,resizable=1,toolbar=1,scrollbars=1,status=0")


newWindow .document.open()
// html is the data to be shown on the window. It has script and 
// the content in it.
newWindow .document.write(html)
newWindow .document.close()
4

1 回答 1

3

像这样使用:

<script>
var w = window.open('', 'wnd');

w.document.body.innerHTML = "<b>Hello, stackoverflow!</b>";
</script>
于 2013-03-06T17:07:23.503 回答