window.open关闭后刷新父页面

                window.onbeforeunload = function (event) {
                    window.opener.location.href = window.opener.location.href;
                    //self.opener.location.reload(true); 
                };
原文地址:https://www.cnblogs.com/hofmann/p/13362230.html