아래와 같이 2가지 방법이 있습니다.
뭐가 더 좋은지는 잘 모르겠습니다.
function isPC() {
return /win16|win32|win64|mac|macintel/i.test(navigator.userAgent);
}
if( ! isPC() ) { //alert('mobile 접속')
location.href = '/m/';
}
function isMobile() {
return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
}
if( isMobile() ) { //alert('mobile 접속')
location.href = '/m/';
}
'프론트엔드 개발 놀이터 > Javascript' 카테고리의 다른 글
js 한글금액을 숫자로 (0) | 2020.11.22 |
---|---|
[JS] async/await으로 콜백지옥을 해결해보자 (0) | 2020.10.15 |
상단 URL bar 숨기기 (0) | 2020.09.23 |
[Javascript] Mobile Web 에서 App실행 (0) | 2020.09.07 |
.clone() - 선택한 요소를 복제하는 메서드 (0) | 2020.07.17 |