반응형
<script type="text/javascript">
function isMobile(){
var UserAgent = navigator.userAgent;
if (UserAgent.match(/iPhone|iPod|Android|Windows CE|BlackBerry|Symbian|Windows Phone|webOS|Opera Mini|Opera Mobi|POLARIS|IEMobile|lgtelecom|nokia|SonyEricsson/i) != null || UserAgent.match(/LG|SAMSUNG|Samsung/) != null)
{
return true;
}else{
return false;
}
}
if(isMobile()){
location.href = "/mobile/index.html"; //모바일페이지
}else{
location.href = "/main.html"; //PC용 페이지
}
</script>
반응형
'Javascript' 카테고리의 다른 글
자바스크립트 페이지네이션 (리액트, 부트스트랩) (0) | 2020.12.23 |
---|---|
모던 자바스크립트 튜토리얼 (0) | 2020.12.09 |
html 태그의 부모태그 안의 텍스트 찾기 (0) | 2020.11.27 |
자바스크립트 기본 모음 (0) | 2020.11.03 |
자바스크립트에서 class를 export와 import (0) | 2020.10.31 |