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判断浏览器客户端类型的主要内容,如果未能解决你的问题,请参考以下文章

js判断浏览器客户端类型

JS----判断客户端类型

js中的查看访问网站的客户端及定时任务

Javascript判断客户端是Android还是IOS,判断浏览器类型

js 判断客户端浏览器

怎样使用js代码实现客户端浏览器延时30秒后自动跳转到浏览器默认主页?