怎么用js代码实现关闭当前浏览器

2024-11-13 07:22:32
推荐回答(3个)
回答1:

关闭窗口 ,希望解决了楼主问题。

回答2:

关闭是这个吗?

回答3:

参考如下:
function CloseWebPage(){
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();
}
}