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

JS识别ios & 安卓

时间:2016-11-16 14:56:46      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:log   bsp   isa   android   index   and   tor   mac os x   cti   

var isAndroid = navigator.userAgent.indexOf(‘Android‘) > -1 || navigator.userAgent.indexOf(‘Adr‘) > -1; //android终端
var isiOS = !!navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
$(‘.android‘).click(function(event) {
    if(isAndroid)
    {
        $(".android").attr("href","http://********");
        return ;
    }else{
        alert(‘请选择IOS下载链接!‘);
        return ;
    }
});
$(‘.ios‘).click(function(event) {
    if(isiOS)
    {
        $(".ios").attr("href","http://********");
        return ;
    }else{
        alert(‘请选择安卓下载链接!‘);
        return ;
    }
});

 

JS识别ios & 安卓

标签:log   bsp   isa   android   index   and   tor   mac os x   cti   

原文地址:http://www.cnblogs.com/zxm0125/p/6068993.html

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