判斷訪問端是手機仍是電腦

  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>  
相關文章
相關標籤/搜索