码迷,mamicode.com
首页 > Web开发 > 详细

js判断浏览器客户端类型

时间:2019-06-27 00:24:56      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:浏览器   cas   test   ipa   pre   ipo   nbsp   class   类型   

 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判断浏览器客户端类型

标签:浏览器   cas   test   ipa   pre   ipo   nbsp   class   类型   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!