js 判断androidIOS

Posted 撸的一手好诗

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 判断androidIOS相关的知识,希望对你有一定的参考价值。

var ua = navigator.userAgent.toLowerCase();    
    if (/iphone|ipad|ipod/.test(ua)) {
            //alert("iphone");        
    } else if (/android/.test(ua)) {
            alert("android");    
    }

 

<script type="text/javascript">
var u = navigator.userAgent;
var isAndroid = u.indexOf(‘Android‘) > -1 || u.indexOf(‘Adr‘) > -1; //android终端
var isios = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
alert(‘是否是Android:‘+isAndroid);
alert(‘是否是iOS:‘+isiOS);
</script>
if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
    //alert(navigator.userAgent);  
    window.location.href ="iPhone.html";
} else if (/(Android)/i.test(navigator.userAgent)) {
    //alert(navigator.userAgent); 
    window.location.href ="Android.html";
} else {
    window.location.href ="pc.html";
};

 

以上是关于js 判断androidIOS的主要内容,如果未能解决你的问题,请参考以下文章

android判断某服务是不是正在运行

JS调用AndroidIos原生控件

android 怎么判断是不是wifi

android 2g移动网络 如何判断超时

android判断移动网络是不是打开

根据浏览器判断是否为Androidios或微信环境