티스토리 뷰

모바일 사이트 접속시 모바일사이트로 이동하는 스크립트 소스입니다.

 

모바일 OS 확인

if (navigator.userAgent.match(/iPad/) == null && navigator.userAgent.match(/iPhone|Mobile|UP.Browser|Android|BlackBerry|Windows CE|Nokia|webOS|Opera Mini|SonyEricsson|opera mobi|Windows Phone|IEMobile|POLARIS/) != null)

 

<html>
<head>
<title></title>
<script type="text/javascript">
function mobileWeb()
{
if (navigator.userAgent.match(/iPad/) == null && navigator.userAgent.match
(/iPhone|Mobile|UP.Browser|Android|BlackBerry|Windows CE|Nokia|webOS|Opera Mini|SonyEricsson|
opera mobi|Windows Phone|IEMobile|POLARIS/) != null)
{
document.location.href = "mobileweb/index.html"; //모바일 접속일 경우 모바일 페이지로 이동
} else
{
document.location.href =
"main.html"; //일반 접속일 경우 일반 홈페이지로 이동
}
}
</script>
</head>
<body onload="mobileWeb();">
</body>
</html>


 

 

댓글