[Mobile] userAgent 에이전트를 이용한 모바일 페이지로 자동 이동

[출처] [Mobile] userAgent 에이전트를 이용한 모바일 페이지로 자동 이동 | htglss

<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>

Be the first to comment

Leave a Reply

Your email address will not be published.


*