모바일 전환 스크립트

2012. 7. 27. 17:58 Web/javascript


<script language='javascript'>
 var uAgent = navigator.userAgent.toLowerCase();
 var mobilePhones = new Array('iphone','ipod','android','blackberry','windows ce','nokia','webos','opera mini','sonyericsson','opera mobi','iemobile');
 for(var i=0;i<mobilePhones.length;i++){
  if(uAgent.indexOf(mobilePhones[i]) != -1){
  location.href = '모바일주소';
  }
 }
</script>
Copyright © HuckleberryM All Rights Reserved | JB All In One Designed by CMSFactory.NET