스마트폰 접속시 모바일페이지로 접속
2021. 12. 21. 13:13ㆍStudy/JavaScript
스마트폰 접속시 모바일페이지로 접속
어떻게하면 기존에 웹페이지에서 pc로 접했을때와 스마트폰으로 접했을때 보여지는 페이지를 분류하냐는 겁니다.
이 문제또한 자바스크립트를 통해 스마트폰의 종류를 구별한다음 알맞게 페이지 브라우징 처리를 할수있습니다.
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="링크될 주소";
}
}
'Study > JavaScript' 카테고리의 다른 글
링크 시 매개변수(parameter)파라미터 값 넘기기 (0) | 2021.12.21 |
---|---|
Mobile 홈 화면 전체 화면 모드 (0) | 2021.12.21 |
숫자 천 단위마다 콤마(,) 찍기 (0) | 2021.12.17 |
Class 추가, 제거 (0) | 2021.12.03 |
JavaScript event (0) | 2021.12.03 |