본문 바로가기

Web/javascript & jQuery

모바일 접속 시 페이지 이동

반응형

모바일 페이지 접속 시 특정 url로 전환시키는 코드는 다음과 같습니다.

var uAgent = navigator.userAgent.toLowerCase();
var mobilePhones = new Array('iphone','ipod','android','blackberry','windows ce', 'nokia','webos','opera mini','sonyericsson','opera mobi','iemobile'); 
for(var i=0;i<mobilePhones.length;i++) if(uAgent.indexOf(mobilePhones[i]) != -1) 
document.location="모바일 주소";
반응형