vue 关闭浏览器


在开发中的一个需求,vue中关闭浏览器,

直接使用window.close()在chrome、fireFox会不起作用

需要改为一下方式

window.open('about:blank','_self').close()

上面这种方式会把你的当前页面改为

 

或者使用

window.open('','_self').close(),

使用它的效果会比第一个更好

因此,比较合适的方法就是

var userAgent = navigator.userAgent;
if (userAgent.indexOf("Firefox") != -1 || userAgent.indexOf("Chrome") !=-1) {
window.open('','_self').close()  或

window.location.href = "about:blank"

}else {
window.opener = null;
window.open("about:blank", "_self");
window.close();
}

 

欢迎留言,请多多指导!!!


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM