zoukankan      html  css  js  c++  java
  • 判断PC端浏览器类型

    if (browserInfo.type !== 'IE' || (browserInfo.type == 'IE' && Number(browserInfo.version) > 9)) {
      //当前可用
      } else {
      // window.location.href = "http://10.2.4.52/dist/browser.html";
      window.location.href = "http://wf2.aspirecn.com/dist/browser.html";
      }
       
      function getBrowserInfo(){
      var ua = navigator.userAgent.toLocaleLowerCase();
      var browser = {
      type: null,
      version:0
      };
      if (ua.match(/msie/) != null || ua.match(/trident/) != null) {
      browser.type = "IE";
      browser.version = ua.match(/msie ([d.]+)/) != null ? ua.match(/msie ([d.]+)/)[1] : ua.match(/rv:([d.]+)/)[1];
      } else if (ua.match(/firefox/) != null) {
      browser.type = "火狐";
      }else if (ua.match(/ubrowser/) != null) {
      browser.type = "UC";
      }else if (ua.match(/opera/) != null) {
      browser.type = "欧朋";
      } else if (ua.match(/bidubrowser/) != null) {
      browser.type = "百度";
      }else if (ua.match(/metasr/) != null) {
      browser.type = "搜狗";
      }else if (ua.match(/tencenttraveler/) != null || ua.match(/qqbrowse/) != null) {
      browser.type = "QQ";
      }else if (ua.match(/maxthon/) != null) {
      browser.type = "遨游";
      }else if (ua.match(/chrome/) != null) {
      var is360 = _mime("type", "application/vnd.chromium.remoting-viewer");
      function _mime(option, value) {
      var mimeTypes = navigator.mimeTypes;
      for (var mt in mimeTypes) {
      if (mimeTypes[mt][option] == value) {
      return true;
      }
      }
      return false;
      }
      if(is360){
      browser.type = '360';
      }else{
      browser.type = 'chrome';
      }
      }else if (ua.match(/safari/) != null) {
      browser.type = "Safari";
      }else{
      console.log(ua);
      console.log('未检测到浏览器类型');
      }
      return browser;
  • 相关阅读:
    【七款炫酷的页面特效】
    【PHP环境-WampServer踩坑】
    【Elasticsearch在winodws系统启动报could not find java+闪退】
    【Vue-入门笔记-7】
    关于ios的光标和键盘回弹问题
    AES加密然后ajax传输数据
    文件进行MD5计算
    jqGrid 常用 总结 -2
    关于页面传参,decodeURI和decodeURIComponent
    js防抖和节流
  • 原文地址:https://www.cnblogs.com/liuhao-web/p/11224811.html
Copyright © 2011-2022 走看看