TypeError: undefined is not an object (evaluating 'newWindow.focus')

烂漫一生 提交于 2019-12-24 13:28:27

问题


I am having the following javascript which open ups a child window with the sizes and align it int he center of the screen

function PopupCenter(url, title, w, h) {
            // Fixes dual-screen position                         Most browsers      Firefox
            var dualScreenLeft = window.screenLeft != undefined ? window.screenLeft : screen.left;
            var dualScreenTop = window.screenTop != undefined ? window.screenTop : screen.top;

            var width = window.innerWidth ? window.innerWidth : document.documentElement.clientWidth ? document.documentElement.clientWidth : screen.width;
            var height = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : screen.height;

            var left = ((width / 2) - (w / 2)) + dualScreenLeft;
            var top = ((height / 2) - (h / 2)) + dualScreenTop;
            var newWindow = window.open(url, title, 'scrollbars=yes, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);

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

            var timer = setInterval(checkChild, 500);
                function checkChild() {
                    if (newWindow.closed) {
                        var message = 'You have aborted the transaction by closing the window !';
                        var status = 'closed';
                        paymentResponseDisplay(message,status)   
                        clearInterval(timer);
                    }
            }
            window.onbeforeunload = function() {
                if(!newWindow.closed){
                    return "Do you really want to abort this transaction?";
                }
            }

        }    

But in safari I am getting

TypeError: undefined is not an object (evaluating 'newWindow.focus')

I am unable to find a fix for this. Can some one help out?


回答1:


In my case, this problem occurred because I called popup from the ajax result in the Safari. I received ajax with sync and it worked fine.

window.open() works different on AJAX success



来源:https://stackoverflow.com/questions/37093759/typeerror-undefined-is-not-an-object-evaluating-newwindow-focus

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!