用JS判断iPhone|iPad|iPod|iOS|Android客户端
如何用JS判断是苹果客户端还是安卓客户端:
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"; };
相关推荐
ydc0 2020-07-30
好好学习天天 2020-06-12
fanxiaoxuan 2020-06-03
chsoft 2020-09-17
Mryiyi 2020-08-07
suweierxing 2020-06-02
yangyujun 2019-12-18
liuxudong00 2020-11-19
章鱼之家 2020-10-29
leitingdulante 2020-10-21
xuegangic 2020-10-17
硬币0 2020-10-15
ZuoYanDeHuangHun 2020-09-18
MatrixHero 2020-08-20
XxZproject 2020-08-10
定格 2020-08-15
yechen00 2020-07-25
孝平 2020-07-18
ntfsformac 2020-06-23