두 개의 휴대전화 방문 pc 사이트 자동 점프 핸드폰 단말기 사이트 코드 공유

5657 단어
4G가 강림하자 모바일 사이트는 이미 수습할 수 없게 되었고 pc단과 모바일 홈페이지가 병존한다.어떻게 다른 사람이 당신의 pc단 홈페이지를 방문하여 이동단 사이트로 직접 이동하게 합니까?시청자 여러분, 둘째가 코드를 올리세요!왔어!
브라우저가 휴대전화 단말기인지 아닌지 판단하다


(function(){var reWriteUrl=function(url){if(url){var Splits=url.split("/"),siteName=window.location.pathname;if(typeof siteName!=="undefined"){return"https://m.jb51.net"+siteName}}};if(/Android|webOS|iPhone|iPad|Windows Phone|iPod|BlackBerry|SymbianOS|Nokia|Mobile/i.test(navigator.userAgent)){var url=window.location.href;var pathname=window.location.pathname;if(url.indexOf("?pc")<0){try{window.location.href=reWriteUrl(url)}catch(e){}}}})();

브라우저가 pc단인지 아닌지를 판단하면 pc페이지로 이동합니다


var browser1 = {
	  versions: function () {
	    var u = navigator.userAgent, app = navigator.appVersion;
	    return {//           
	      trident: u.indexOf('Trident') > -1, //IE  
	      presto: u.indexOf('Presto') > -1, //opera  
	      webKit: u.indexOf('AppleWebKit') > -1, //  、    
	      gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //    
	      mobile: !!u.match(/AppleWebKit.*Mobile/i) || !!u.match(/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/), //       
	      ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios  
	      android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android    uc   
	      iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1, //   iPhone  QQHD   
	      iPad: u.indexOf('iPad') > -1, //  iPad
	      webApp: u.indexOf('Safari') == -1 //  web    ,       
	    };
	  } (),
	  language: (navigator.browserLanguage || navigator.language).toLowerCase()
	}

if(browser1.versions.mobile==false&&browser1.versions.ios==false&&browser1.versions.android==false&&browser1.versions.iPhone==false &&browser1.versions.iPad==false){
		//location.href = location.href.replace("m.","www.");//        ,    pc  
		alert("pc");
	}


다음은 보충으로 참고할 수 있다
jQuery 브라우저가 모바일 단말기인지 컴퓨터 단말기인지 자동 점프 판단
같은 사이트에서 모바일 쪽과 컴퓨터 쪽을 대상으로 서로 다른 페이지를 볼 수 있는 작은 코드먼저 jQuery 파일을 로드합니다.

$(function(){ 
  var MobileUA = (function() { 
    var ua = navigator.userAgent.toLowerCase(); 
 
    var mua = { 
      IOS: /ipod|iphone|ipad/.test(ua), //iOS 
      IPHONE: /iphone/.test(ua), //iPhone 
      IPAD: /ipad/.test(ua), //iPad 
      ANDROID: /android/.test(ua), //Android Device 
      WINDOWS: /windows/.test(ua), //Windows Device 
      TOUCH_DEVICE: ('ontouchstart' in window) || /touch/.test(ua), //Touch Device 
      MOBILE: /mobile/.test(ua), //Mobile Device (iPad) 
      ANDROID_TABLET: false, //Android Tablet 
      WINDOWS_TABLET: false, //Windows Tablet 
      TABLET: false, //Tablet (iPad, Android, Windows) 
      SMART_PHONE: false //Smart Phone (iPhone, Android) 
    }; 
 
    mua.ANDROID_TABLET = mua.ANDROID && !mua.MOBILE; 
    mua.WINDOWS_TABLET = mua.WINDOWS && /tablet/.test(ua); 
    mua.TABLET = mua.IPAD || mua.ANDROID_TABLET || mua.WINDOWS_TABLET; 
    mua.SMART_PHONE = mua.MOBILE && !mua.TABLET; 
 
    return mua; 
  }()); 
 
  //SmartPhone  
  if (MobileUA.SMART_PHONE) { 
    //         
     
    document.location.href = 'http://www.aaa.com/wap/index.html'; 
  } 
}); 

핸드폰 쪽도 웹 페이지의 데이터 동기화가 필요하다
 
  
<br> (function(){var ua=navigator.userAgent.toLowerCase();var bIsIpad=ua.match(/ipad/i)=="ipad";var bIsIphoneOs=ua.match(/iphone os/i)=="iphone os";var bIsAndroid=ua.match(/android/i)=="android";var bIsWM=ua.match(/windows mobile/i)=="windows mobile";if(bIsIpad||bIsIphoneOs||bIsAndroid||bIsWM){window.location.href="http://m.jb51.net/android/game/826.html"}})(); <br>

두 번째 방법:

 
function mobile_device_detect(url)
{ 
  var thisOS=navigator.platform; 
  var os=new Array("iPhone","iPod","iPad","android","Nokia","SymbianOS","Symbian","Windows Phone","Phone","Linux armv71","MAUI","UNTRUSTED/1.0","Windows CE","BlackBerry","IEMobile");
 for(var i=0;i<os.length;i++)
  { 
 if(thisOS.match(os[i]))
  { 
 window.location=url;
 } 
 }
 
 //                ,           
 if(navigator.platform.indexOf('iPad') != -1)
  {
 window.location=url;
 }
 
 //        Android       Linux
 //  navigator.platform            ,        ,  navigator.appVersion     
 var check = navigator.appVersion;
 
 if( check.match(/linux/i) )
   {
 //X11 UC       ,                  
 if(check.match(/mobile/i) || check.match(/X11/i))
     {
 window.location=url;
 } 
 }
 
 // in_array  
 Array.prototype.in_array = function(e)
 {
 for(i=0;i<this.length;i++)
 {
 if(this[i] == e)
 return true;
 }
 return false;
 }
} 
mobile_device_detect("http://***.***.com");

비고 여기 모바일device_detect("http://***.***.com");//안에 있는 주소가 바로 모바일 사이트의 주소입니다.

좋은 웹페이지 즐겨찾기