• js判断手机端操作系统的两种方法


    //判断手机端操作系统(Andorid/IOS),并自动跳转相应下载界面
    androidURL ="http://xxx/xxx.apk";

      var browser = {  
           versions: function() {  
                 var u = navigator.userAgent,  
                     app = navigator.appVersion;  
                 return {  
                         android: u.indexOf("Android") > -1 || u.indexOf("Linux") >-1,  
                         iPhone: u.indexOf("iPhone") > -1 ,  
                         iPad: u.indexOf("iPad") >-1,  
                         iPod: u.indexOf("iPod") > -1,  
                       };  
                 } (),  
            language: (navigator.browserLanguage || navigator.language).toLowerCase()  
         }  
    
         if (browser.versions.iPhone||browser.versions.iPad||browser.versions.iPod)  
             {  
                //如果是ios系統,直接跳轉至appstore該應用首頁,傳遞参數为該應用在appstroe的id號  
                window.location.href="itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=123456";  
             }  
             else if(browser.versions.android)  
             {  
                window.location.href = androidURL;  
             }  
    
    /* //第二种方法  
        if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {  
            //alert(navigator.userAgent);  
            window.location.href ="iPhone.html";  
        } else if (/(Android)/i.test(navigator.userAgent)) {  
            //alert(navigator.userAgent);  
            window.location.href ="Android.html";  
        } else {  
            window.location.href ="pc.html";  
        };  
    
    
    
    
    */
  • 相关阅读:
    Cookie的作用范围、设置、创建、获取的方法
    2020寒假总结14
    MyBatis中foreach传入参数为数组
    Springmvc接收数组参数
    寒假每日总结十
    2020寒假每日总结
    2020寒假总结八
    2020寒假每日总结七
    2020寒假每日总结四
    2020寒假总结三
  • 原文地址:https://www.cnblogs.com/fayin/p/6405004.html
Copyright © 2020-2023  润新知