zoukankan      html  css  js  c++  java
  • 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();
    }

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

  • 相关阅读:
    ts笔记-辨析联合类型
    ts笔记-类型兼容性
    ts笔记-never和void
    ts笔记-泛型
    ts笔记-类型断言
    ts笔记
    ts笔记
    ts类型-枚举
    ts笔记-类型声明
    ts笔记-类型系统
  • 原文地址:https://www.cnblogs.com/neilniu/p/10231835.html
Copyright © 2011-2022 走看看