반응형
모바일 페이지 접속 시 특정 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="모바일 주소";
반응형
'Web > javascript & jQuery' 카테고리의 다른 글
substr을 사용하여 간단하게 글자수 자르기 (0) | 2015.01.09 |
---|---|
팝업창 소스 정리 (0) | 2014.12.03 |
랜덤으로 이미지 출력하기 (0) | 2014.10.10 |
정규식을 사용해 html 태그 제거하기 (0) | 2014.09.30 |
각 목록요소에 숫자가 순차적으로 붙는 클래스 삽입하기 (0) | 2014.08.01 |