首页 > Web开发 > 详细

js判断浏览器客户端类型

时间:2019-06-27 00:30:07      阅读:171      评论:0      收藏:0      [点我收藏+]
 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判断浏览器客户端类型

原文:https://www.cnblogs.com/zhangzhengyang/p/11094633.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!