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