我在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中。为什么?
答案 0 :(得分:0)
完成了后台脚本和消息传递