自上次更新以来Firefox和Chrome错误(var w = window.open();)

时间:2013-07-01 10:35:52

标签: javascript firefox window.open

自上次浏览器更新以来,我发现以前正在运行的函数出错,我打开一个新标签并用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行收到错误。

0 个答案:

没有答案