博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
判断访问端是手机还是电脑
阅读量:6804 次
发布时间:2019-06-26

本文共 1215 字,大约阅读时间需要 4 分钟。

hot3.png

  1. <SCRIPT LANGUAGE="JavaScript">  
  2.   
  3.     //客户端判断  
  4.       mobile_device_detect();  
  5.   
  6.     function mobile_device_detect() {  
  7.   
  8.         var appurl = "http://www.baidu.com/";  /* 移动端访问地址 */  
  9.         var weburl = "http://www.douyutv.com/";  /* pc端访问地址 */  
  10.           
  11.         var thisOS = navigator.platform;  
  12.         var os = new Array("iPhone", "iPod", "iPad", "android", "Nokia",  
  13.                 "SymbianOS", "Symbian", "Windows Phone", "Phone",  
  14.                 "Linux armv71", "MAUI", "UNTRUSTED/1.0", "Windows CE",  
  15.                 "BlackBerry", "IEMobile");  
  16.         for (var i = 0; i < os.length; i++) {  
  17.             if (thisOS.match(os[i])) {  
  18.                 window.location = appurl;  
  19.             }else{  
  20.                 window.location = weburl;    
  21.             }  
  22.   
  23.         }  
  24.         //因为相当部分的手机系统不知道信息,这里是做临时性特殊辨认  
  25.         if (navigator.platform.indexOf('iPad') != -1) {  
  26.             window.location = appurl;  
  27.         }else{  
  28.             window.location = weburl;    
  29.         }  
  30.         //做这一部分是因为Android手机的内核也是Linux  
  31.         //但是navigator.platform显示信息不尽相同情况繁多,因此从浏览器下手,即用navigator.appVersion信息做判断  
  32.         var check = navigator.appVersion;  
  33.         if (check.match(/linux/i)) {  
  34.             //X11是UC浏览器的平台 ,如果有其他特殊浏览器也可以附加上条件  
  35.             if (check.match(/mobile/i) || check.match(/X11/i)) {  
  36.                 window.location = appurl;  
  37.             }else{  
  38.                 window.location = weburl;   
  39.             }  
  40.         }  
  41.         //类in_array函数  
  42.         Array.prototype.in_array = function(e) {  
  43.             for (i = 0; i < this.length; i++) {  
  44.                 if (this[i] == e)  
  45.                     return true;  
  46.             }  
  47.             return false;  
  48.         }  
  49.     }  
  50.       
  51.        
  52. </SCRIPT>  

转载于:https://my.oschina.net/zyt1978/blog/689587

你可能感兴趣的文章
mongodb
查看>>
CMAKE总结(1) .lib .dll .a .so libx.dll libx.dll.a
查看>>
java读取配置文件*.property
查看>>
how to send mail from 3rd
查看>>
mappingResources、mappingLocations、mappingDirectoryLocations、mappingJarLocations
查看>>
AJAX 传递jison数组 ;前端循环辅助数组 -----解决方案
查看>>
关于磁盘相关知识
查看>>
Mozilla推出HTML/CSS在线交互式学习网站Thimble
查看>>
关于ppp认证
查看>>
彻底禁用SilentDetection.aspx,极速登录
查看>>
为了忘却的纪念,我的天龙游戏生涯
查看>>
12294错误事件的处理--利用审核日志查找病毒来源
查看>>
第25讲: Scala中柯里化实战详解
查看>>
81.LAMP,PHP5和PHP7安装
查看>>
linux服务(一)LAMP编译安装
查看>>
一次RPC调用时间都去哪儿了
查看>>
linux的rsync工具的常用选项及ssh同步介绍
查看>>
oracle内存体系(二)
查看>>
ReflectASM的使用
查看>>
智能家居监控移动手机组态现实生活中的应用
查看>>