JS判断客户端是安卓还是iOS

Posted

tags:

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

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判断客户端是安卓还是iOS的主要内容,如果未能解决你的问题,请参考以下文章

js,h5页面判断客户端是ios还是安卓

Js判断客户端是iphone还是安卓

js网页判断移动终端浏览器版本信息是安卓还是苹果ios,判断在微信浏览器跳转不同页面,生成二维码

js判断设备信息,安卓ios还是pc端

js判断安卓客户端或者是ios客户端

js判断手机是安卓还是ios