码迷,mamicode.com
首页 > Web开发 > 详细

原生js关闭窗口

时间:2019-01-03 13:00:31      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:ati   opener   indexof   pre   win   nav   agent   navigator   use   


if (navigator.userAgent.indexOf("MSIE") > 0) {
                        if (navigator.userAgent.indexOf("MSIE 6.0") > 0) {
                              window.opener = null;
                              window.close();
                        } else {
                              window.open('', '_top');
                              window.top.close();
                        }
                  } else if (navigator.userAgent.indexOf("Firefox") > 0) {
                        window.location.href = 'about:blank ';
                  } else {
                        window.opener = null;
                        window.open('', '_self', '');
                        window.close();
                  }

原生js关闭窗口

标签:ati   opener   indexof   pre   win   nav   agent   navigator   use   

原文地址:https://www.cnblogs.com/lalalagq/p/10213519.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!