为什么此代码在控制台中有效,但在WebExtensions中无效?

时间:2018-09-12 14:47:01

标签: firefox document.write

我在firefox控制台中有这种奇怪的行为,此代码可以正常工作:

var mywindow = window.open('', 'PRINT', 'height=400,width=600');
mywindow.document.write('<html><head><title>' + document.title  + '</title>');
mywindow.document.write('</head><body >');
mywindow.document.write('<h1>' + "test" + '</h1>');
mywindow.document.write("<p>Ceci est un test</p>");
mywindow.document.write('</body></html>');

,但不在我的firefox WebExtensions中。为什么?

1 个答案:

答案 0 :(得分:0)

完成了后台脚本和消息传递