码迷,mamicode.com
首页 > Web开发 > 详细

根据终端分配不同的url地址

时间:2016-03-02 13:04:36      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

<!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
                    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 = ‘1232‘;
        if(Terminal.platform.android){
            theUrl = ‘http://xzzh.xiaoyou-game.com/a‘;
        }else if(Terminal.platform.iPhone){
            theUrl = ‘http://xzzh.xiaoyou-game.com/b‘;
        }
        location.href = theUrl;
    </script>
</head>
<body>
    <!--
        有啥问题,请直接到这里来反馈:http://www.baidu.com/
    -->
</body>
</html>

 

根据终端分配不同的url地址

标签:

原文地址:http://www.cnblogs.com/feiwu123/p/5234050.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!