zoukankan      html  css  js  c++  java
  • 根据浏览器内核判断是web/iOS/android/ipad/iphone 来打开不同的网站或页面

    纯js,直接分享,直接使用:

           var browser={ 
              versions:function(){   
                var u = navigator.userAgent, app = navigator.appVersion;   
                return {//移动终端浏览器版本信息
                      trident: u.indexOf('Trident') > -1, //IE内核
                      presto: u.indexOf('Presto') > -1, //opera内核
                      webKit: u.indexOf('AppleWebKit') > -1, //苹果、谷歌内核
                      gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //火狐内核
                      mobile: !!u.match(/AppleWebKit.*Mobile.*/), //是否为移动终端
                      ios: !!u.match(/(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
                      android: u.indexOf('Android') > -1 , //android终端或者uc浏览器|| u.indexOf('Linux') > -1
                      iPhone: u.indexOf('iPhone') > -1 , //是否为iPhone或者QQHD浏览器
                      iPad: u.indexOf('iPad') > -1, //是否iPad
                      webApp: u.indexOf('Safari') == -1, //是否web应该程序,没有头部与底部
                      wechat: u.indexOf('MicroMessenger')!=-1
                  }; 
              }(), 
              language:(navigator.browserLanguage || navigator.language).toLowerCase()
    
           }   
    
              if(browser.versions.mobile || browser.versions.ios || browser.versions.android ||   
                browser.versions.iPhone || browser.versions.iPad){       
                    if(browser.versions.wechat) {
                      location.href="http://a.app.qq.com/o/simple.jsp?pkgname=com.duodian.zilihj"
                    } else {
                      location.href="https://"+location.hostname+"/mobile"
                    }
              }
              var href= location.href
              href = href.replace(/^http:/i,function(){
                return 'https:'
              }).replace(/^https://www./i,function(){
                return 'https://'
              }).replace(/zi.com/,'zl-hj.com')
              if(href!=location.href) {
                location.assign(href)
              }

    请把这段代码置于  </head> 前

  • 相关阅读:
    如何将cordova导入Android studio,只需两步即可
    Cordova 教程 学习步骤-从零基础开始
    特效插件
    jq 命名空间
    input聚焦后光标移动至末尾
    时间常用api
    jq 便捷api jq 常用 api jq 快捷 api
    键盘事件
    创建爬网规则
    SharePoint 2013 本地开发解决方案以及程调试(真的可以)
  • 原文地址:https://www.cnblogs.com/baiyygynui/p/7141404.html
Copyright © 2011-2022 走看看