V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
jwangkun
V2EX  ›  问与答

如何实现一个二维码跳转到连个应用市场(自动识别 Android 和 ios)?

  •  
  •   jwangkun · 2014-12-19 09:22:37 +08:00 · 5360 次点击
    这是一个创建于 3423 天前的主题,其中的信息可能已经有所发展或是发生改变。
    我的想法是做一个页面通过js判断一下,然后识别后自动跳转,有没有有其他的更好的办法?js实现的话怎么写js自动识别ios Andriod?能贴上代码最好,谢谢
    4 条回复    2014-12-19 12:02:32 +08:00
    jwangkun
        1
    jwangkun  
    OP
       2014-12-19 09:30:28 +08:00   ❤️ 1
    <html>
    <title></title>
    <head></head>
    <body>
    <script type="text/javascript">
    var browser = {
    versions: function () {
    var u = navigator.userAgent, app = navigator.appVersion;
    return { //移动终端浏览器版本信息
    ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
    android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或uc浏览器
    iPhone: u.indexOf('iPhone') > -1, //是否为iPhone或者QQHD浏览器
    iPad: u.indexOf('iPad') > -1, //是否iPad
    };
    }(),
    }
    if (browser.versions.iPhone || browser.versions.iPad || browser.versions.ios) {
    window.location.href = "https://itunes.apple.com/cn/app/qq/id444934666?mt=8&v0=WWW-GCCN-ITSTOP100-FREEAPPS&l=&ign-mpt=uo%3D4";
    }
    if (browser.versions.android) {
    window.location.href = "http://www.qq.com";
    }
    </body>
    </html>
    这样行吗
    WildCat
        2
    WildCat  
       2014-12-19 09:32:12 +08:00 via iPhone
    kookxiang
        3
    kookxiang  
       2014-12-19 11:28:08 +08:00
    最好直接用302跳转吧,也是判断浏览器UA跳转
    xwsoul
        4
    xwsoul  
       2014-12-19 12:02:32 +08:00
    简单说就是二维码进landing page, Landing page 识别定向转发
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1684 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 23ms · UTC 00:29 · PVG 08:29 · LAX 17:29 · JFK 20:29
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.