Skip to main content
 首页 » 编程设计

js判断浏览器类型

2022年07月16日202lexus
function myBrowser() { 
      var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串 
      if (userAgent.indexOf("Firefox") > -1) { 
        return ("FF", console.log('Firefox', '是Firefox浏览器')); 
      } //判断是否Firefox浏览器 
      if (userAgent.indexOf("Chrome") > -1) { 
        return ("Chrome", console.log('Chrome', '是Chrome浏览器')); 
      }//判断是否Chrome浏览器 
      if (!!window.ActiveXObject || "ActiveXObject" in window || (userAgent.indexOf("Trident") > -1)) { 
        return ("IE", console.log('IE', '是IE浏览器')); 
      }//判断是否IE浏览器 
    } 
   
 if (myBrowser() == "IE") { 
     //如果IE浏览器就怎么操作 
    }

本文参考链接:https://www.cnblogs.com/wulicute-TS/p/12002301.html