IT정보사전

[JavaScript] 모바일페이지로 이동 본문

웹 프로그래밍

[JavaScript] 모바일페이지로 이동

작은나무0530 2018. 12. 7. 22:27
728x90
반응형

//모바일 페이지로 이동
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 = "http://이동할 페이지";
}

728x90
반응형
그리드형
Comments