未捕获的TypeError:无法读取属性'焦点'未定义的铬

时间:2017-06-01 06:15:33

标签: javascript jquery angularjs google-chrome

 var newWindow=window.open('','export');

                // Puts focus on the newWindow
                if (window.focus) {
                    newWindow.focus();
                }

我想要打印我的网页然后它在Mozilla中工作正常,但在谷歌浏览器

中没有

1 个答案:

答案 0 :(得分:1)

您正在检查newWindow.focus,但之后尝试使用 {{1}}。与您检查和使用的内容保持一致。