본문 바로가기
Developer/javascript

mobile splite, 모바일 페이지로 분기

by MindOpener 2014. 6. 23.
반응형




<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='원하는 모바일 도메인.';

반응형