어느 가을날의 전환점

MOBILE|userAgent 에이전트를 이용한 모바일 페이지로 자동 이동 본문

SmartPhone/MobileWeb

MOBILE|userAgent 에이전트를 이용한 모바일 페이지로 자동 이동

어느가을빛 2011. 11. 15. 10:58

<script type="text/javascript">
var mobileKeyWords = new Array('iPhone', 'iPod', 'BlackBerry', 'Android', 'Windows CE', 'LG', 'MOT', 'SAMSUNG', 'SonyEricsson');
for (var word in mobileKeyWords){
    if (navigator.userAgent.match(mobileKeyWords[word]) != null){
        location.href = "보내고 싶은 모바일 경로";
        break;
    }
}
</script>

#참조: http://en.wikipedia.org/wiki/List_of_user_agents_for_mobile_phones
#출처: http://htglss.tistory.com/96

'SmartPhone > MobileWeb' 카테고리의 다른 글

모바일 웹 컨퍼런스 2010 발표 자료  (0) 2010.06.24
Comments