解决window.close()方法兼容各个浏览器(ie关闭会进行弹框提示是否关闭)
2021-01-02 21:30
标签:pre asc script use 页面 ref window blank firefox 解决window.close()方法兼容各个浏览器(ie关闭会进行弹框提示是否关闭) 标签:pre asc script use 页面 ref window blank firefox 原文地址:https://www.cnblogs.com/litterjoan/p/13214714.html/**
* 关闭页面,兼容各浏览器(解决ie提示框问题)
*/
function closeWindow(){
if (navigator.userAgent.indexOf("Firefox")!=-1 || navigator.userAgent.indexOf("Chrome")!=-1) {
window.location.href = ‘about:blank‘
window.close()
} else {
window.opener = null
window.open(‘‘, ‘_self‘, ‘‘)
window.close()
}
}
下一篇:python基础试题
文章标题:解决window.close()方法兼容各个浏览器(ie关闭会进行弹框提示是否关闭)
文章链接:http://soscw.com/index.php/essay/39672.html