zoukankan      html  css  js  c++  java
  • 扫描二维码自动识别手机系统(Android/IOS)

     

    一、针对“多终端适配”&“APP国际化”

    <!DOCTYPE HTML>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <title>手机APP下载页面:根据终端辨别下载地址</title>
        <script type="text/javascript">
            // 获取终端的相关信息
            var Terminal = {
                // 辨别移动终端类型
                platform : function(){
                    var u = navigator.userAgent, app = navigator.appVersion;
                    return {
                        // android终端或者uc浏览器
                        android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1,
                        // 是否为iPhone或者QQHD浏览器
                        iPhone: u.indexOf('iPhone') > -1 ,
                        // 是否iPad
                        iPad: u.indexOf('iPad') > -1
                    };
                }(),
                // 辨别移动终端的语言:zh-cn、en-us、ko-kr、ja-jp...
                language : (navigator.browserLanguage || navigator.language).toLowerCase()
            }
     
            // 根据不同的终端,跳转到不同的地址
            var theUrl = 'http://www.XXX.com';
            if(Terminal.platform.android){
                theUrl = '你的Android APP对应下载地址:apk文件地址';
            }else if(Terminal.platform.iPhone){
                theUrl = '你的iPhone APP对应下载地址:APP Store地址';
            }else if(Terminal.platform.iPad){
                // 还可以通过language,区分开多国语言版
                switch(Terminal.language){
                    case 'en-us':
                        theUrl = '你的iPad APP(英文版)对应下载地址:APP Store地址';
                        break;
                    case 'ko-kr':
                        theUrl = '你的iPad APP(韩语版)对应下载地址:APP Store地址';
                        break;
                    case 'ja-jp':
                        theUrl = '你的iPad APP(日文版)对应下载地址:APP Store地址';
                        break;
                    default:
                        theUrl = '你的iPad APP(中文版-默认)对应下载地址:APP Store地址';
                }
            }
     
            location.href = theUrl;
        </script>
    </head>
    <body>
        <!--
     
        -->
    </body>
    </html>
    

      针对“多渠道适配”

    <!DOCTYPE HTML>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <title>手机APP下载页面:根据渠道辨别下载地址</title>
        <script type="text/javascript">
     
            // 如果要分渠道,也是可以的,渠道区分:?from=xx
            var From = (function(){
                var searchInfo = location.search.substr(1).split('&'),item,from;
                for(var i= 0,len=searchInfo.length;len > 1 && i<len;i++){
                    item = searchInfo[i].split('=');
                    if(item[0] == 'from') {
                        from = item[1];
                        break;
                    }
                }
                return from;
            })();
     
            // 根据不同渠道,去向不同的下载地址
            var theUrl = 'http://www.XXX.com';
            switch(From){
                case 'baidu':
                    theUrl = '你的APP:针对 baidu 的定制版';
                    break;
                case 'google':
                    theUrl = '你的APP:针对 google 的定制版';
                    break;
                default:
                    theUrl = '你的APP:官方 版';
                    break;
            }
            location.href = theUrl;
     
        </script>
    </head>
    <body>
        <!--
     
        -->
    </body>
    </html>

    三种结合起来,同时对终端、语言、渠道进行识别:

    <!DOCTYPE HTML>
    <html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <title>手机APP下载页面:根据终端&渠道辨别下载地址</title>
        <script type="text/javascript">
            // 获取终端的相关信息
            var Terminal = {
                // 辨别移动终端类型
                platform : function(){
                    var u = navigator.userAgent, app = navigator.appVersion;
                    return {
                        // android终端或者uc浏览器
                        android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1,
                        // 是否为iPhone或者QQHD浏览器
                        iPhone: u.indexOf('iPhone') > -1 ,
                        // 是否iPad
                        iPad: u.indexOf('iPad') > -1
                    };
                }(),
                // 辨别移动终端的语言:zh-cn、en-us、ko-kr、ja-jp...
                language : (navigator.browserLanguage || navigator.language).toLowerCase()
            }
     
            // 如果要分渠道,也是可以的,渠道区分:?from=xx
            var From = (function(){
                var searchInfo = location.search.substr(1).split('&'),item,from;
                for(var i= 0,len=searchInfo.length;len > 1 && i<len;i++){
                    item = searchInfo[i].split('=');
                    if(item[0] == 'from') {
                        from = item[1];
                        break;
                    }
                }
                return from;
            })();
     
            // 根据不同的终端,跳转到不同的地址
            var theUrl = 'http://www.XXX.com';
            // android系统APP
            if(Terminal.platform.android){
                // 这里区分渠道
                switch(From){
                    case 'baidu':
                        theUrl = '你的APP:baidu定制版';
                        break;
                    case 'google':
                        theUrl = '你的APP:google定制版';
                        break;
                    default:
                        theUrl = '你的APP:官方版'
                }
            }
     
            location.href = theUrl;
        </script>
    </head>
    <body>
        <!--
     
        -->
    </body>
    </html>
    

      

  • 相关阅读:
    一次与客户端合作的走坑之旅!
    ecplise打不开提示Eclipse中...No java virtual machine was found...
    eclipse配置tomcat,让java web项目运行起来!
    Tomcat v9.0 Could not publish to the server. java.lang.IndexOutOfBoundsException
    Certbot让网站拥有免费https证书
    Nginx访问权限配置
    hexo博客pure主题解决不蒜子计数不显示的问题
    Mono.Cecil 修改目标.NET的IL代码保存时报异常的处理。
    [转载]斐讯K2 A2版免TTL刷BREED不死Bootloader
    各种UserAgent的列表
  • 原文地址:https://www.cnblogs.com/DreamerLeaf/p/6855028.html
Copyright © 2011-2022 走看看