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的主要内容,如果未能解决你的问题,请参考以下文章