聚焦跨域窗口

时间:2018-03-29 07:06:48

标签: javascript jquery html5 events cross-domain

我从xyz.html页面调用以下代码,我的要求是当我离开窗口/标签以关注新窗口时

var wi = {};    
(function () {
   var url = "http://10.161.213.191/MkWeb/TestInfo.html";
   wi.newWindow = window.open(url, "", "fullscreen=0, height=300, width=500, location=0, resizable=1, scrollbars=1, menubar=0, toolbar=no, status=1, titlebar=0, top=250, left=250");
}());

$(document).ready(function() {
        $(window).on('unload', function(event){
            focusSurveyWindow("unload");
        }).on('blur', function(event){
            focusSurveyWindow("blur");
        });
        document.addEventListener("visibilitychange", function(event){
            focusSurveyWindow("visibilitychange");
        }, true)
        //document.createEvent("visibilitychange",function(){
        //    focusSurveyWindow(event.type) 
        //});
    });

我在xyz.html页面上创建了一个按钮,点击其中我试图聚焦新窗口,但是当我离开标签或关闭窗口时我无法对焦新窗口。

0 个答案:

没有答案