js判断浏览器客户端类型
Posted zhangzhengyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js判断浏览器客户端类型相关的知识,希望对你有一定的参考价值。
1 if (/(iPhone|iPad|iPod|ios)/i.test(navigator.userAgent)) 2 3 //alert(navigator.userAgent); 4 window.location.href ="iPhone.html"; 5 6 else if (/(android)/i.test(navigator.userAgent)) 7 8 //alert(navigator.userAgent); 9 window.location.href ="Android.html"; 10 11 else 12 13 window.location.href ="pc.html"; 14 15 ; 16 17 if(/(iPhone|iOS|Android|Windows Phone)/i.test(navigator.userAgent)) 18 window.location.href = ‘mobile.html‘; 19
1 var ua = navigator.userAgent.toLowerCase(); 2 var drive; 3 if (/iphone|ipad|ipod/.test(ua)) 4 drive = 1; 5 else if (/android/.test(ua)) 6 drive = 3; 7
以上是关于js判断浏览器客户端类型的主要内容,如果未能解决你的问题,请参考以下文章