접속 기기가 PC , 모바일인지 구분하는 스크립트.

개발/실전 2015. 11. 24. 09:16

웹 개발 도중에 pc버전, 모바일 버전 두가지로 개발하는데 

자동으로 모바일로 접속하면 모바일 버전으로 이동하는 스크립트를 찾았다


<script language="Javascript">
 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="링크될 주소";
</script>


최초 index 페이지에 넣어주면 끝~


'개발 > 실전' 카테고리의 다른 글

더보기 클릭 했을때  (0) 2016.03.30
시간 지나면 자동으로 페이지 이동  (0) 2015.12.02
도메인 자동 주소 변경  (0) 2015.08.11
하루동안 열지 않기 [쿠키]  (0) 2015.04.01
checkbox 사용  (0) 2014.10.29