IT/WebProgramming
인터넷 브라우저를 모바일 웹으로 자동 연결하는 스크립트
Jang HyunWoong
2014. 12. 19. 09:52
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/";
}
반응형