본문 바로가기
IT/WebProgramming

인터넷 브라우저를 모바일 웹으로 자동 연결하는 스크립트

by Jang HyunWoong 2014. 12. 19.
if ((navigator.userAgent.match(/iPhone/i)) || 
(navigator.userAgent.match(/iPod/i)) || 
(navigator.userAgent.match(/Windows CE/i)) || 
(navigator.userAgent.match(/Symbian/i)) || 
(navigator.userAgent.match(/BlackBerry/i)) || 
(navigator.userAgent.match(/android/i))) {
window.location.href = "http://" + location.host + "/m/";
}


반응형

'IT > WebProgramming' 카테고리의 다른 글

MongoDB란?  (0) 2014.12.19
인터넷 - TCP/IP - OSI 7 계층 개략 [퍼온글]  (0) 2014.12.19
Buffer가 문자열을 가지고 있는 경우 사용 가능한 인코딩  (0) 2014.12.19
웹2.0 web2.0 정의  (0) 2014.12.19
웹 2.0과 공동체  (0) 2014.12.19