根據瀏覽器內核判斷是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> 前


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM