메뉴 건너뛰기

HEUKMYO

Mobile

접속 브라우저를 인식하는 명령어 useragent
2012.07.05 14:47:03

모바일 홈페이지를 제작할 때 스마트폰 버젼인지, PC 버전인지 확인시켜 주는 명령어는 "userAgent"입니다.


<script language='javascript'>
if ( (navigator.userAgent.match(/iPhone/i))|| //아이폰
(navigaor.userAgent.match(/iPod/i))|| //아이팟
(navigator.userAgent.match(/android/i))) //안드로이드 계열
{
window.location.href='모바일 사이트 주소';
} else {
window.location.href='일반 웹사이트 주소';
}
</script>
위로