접속 브라우저를 인식하는 명령어 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>
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>
댓글 0
댓글 쓰기 권한이 없습니다.
> | 접속 브라우저를 인식하는 명령어 useragent | 2012.07.08 |
2 | HTML DOCTYPE 설정 | 2012.07.05 |
1 | HTML5 & Responsive Web Design(반응형 웹 디자인) | 2012.07.06 |