自上次浏览器更新以来,我发现以前正在运行的函数出错,我打开一个新标签并用html数据填充它。
在Firefox(firebug)中我收到此错误:
NS_ERROR_XPC_BAD_OP_ON_WN_PROTO: Illegal operation on WrappedNative prototype object
var w = window.open();
在Chrome中我得到了这个:
Uncaught TypeError: Illegal invocation (anonymous function)
以下是我从点击回调函数开始的代码:
var w = window.open("", "html");
w.document.open();
w.document.write( exportHTML(atHeaders, tableData));
w.window.print();
w.document.close();
我在var w = window.open
行收到错误。