모바일에서 (스마트폰) 홈페이지 볼 때 모바일용 주소로 자동 이동하기
로빈아빠
본문
<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>
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>
관련링크
댓글목록
등록된 댓글이 없습니다.