js关闭浏览器窗口
作者:
lesdom | 来源:发表于
2019-06-13 14:54 被阅读0次
代码
close () {
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关闭浏览器窗口
本文链接:https://www.haomeiwen.com/subject/sulsfctx.html
网友评论