반응형
<script language="JavaScript">
<!--
var uAgent = navigator.userAgent.toLowerCase();
var mobilePhones = new Array('iphone', 'ipod', 'android');
for (var i = 0; i < mobilePhones.length; i++)
if (uAgent.indexOf(mobilePhones[i]) != -1)
window.location.href = "원하는 모바일 도메인..";
//-->
</script>
if((navigator.userAgent.match(/iPhone/i))
||
(navigator.userAgent.match(/iPod/i))
||
(navigator.userAgent.match(/Windows CE/i))
||
(navigator.userAgent.match(/Symbian/i))
||
(navigator.userAgent.match(/BlackBerry/i))
||
(navigator.userAgent.match(/Android/i))
){
window.location.href='원하는 모바일 도메인.';
반응형
'Developer > javascript' 카테고리의 다른 글
jquery 자동 완성 (0) | 2014.12.08 |
---|---|
jquery checked check (0) | 2014.10.13 |
사이트 배너 노출 효과 , 배너 자리바꿈, (0) | 2014.08.13 |
load() 함수 ,jquery , load cache ,캐쉬처리 (0) | 2014.04.10 |
네이버 모바일 같은 사이드바 메뉴 , side Overlay menubar (0) | 2014.01.09 |