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

移动端H5 判断IOS还是Android 平台

时间:2017-11-17 14:59:10      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:oid   ret   androi   size   test   inux   use   other   col   

1.方法

(function($) {
    var UA = window.navigator.userAgent;
    if(/Android|HTC/i.test(UA) || !!(window.navigator[‘platform‘] + ‘‘).match(/Linux/i)) UA = ‘Android‘;
    else if(/iPad/i.test(UA) || /iPod|iPhone/i.test(UA)) UA = ‘iOS‘;
    else UA = ‘other‘;
    $.AndroidOrIos = function() {
        return UA;
    }
})(H5);

2.调用

if(H5.AndroidOrIos()=="iOS"){
  
}else{
  
}

 

移动端H5 判断IOS还是Android 平台

标签:oid   ret   androi   size   test   inux   use   other   col   

原文地址:http://www.cnblogs.com/xianxianxxx/p/7851148.html

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