메인메뉴 바로가기

HOME으로 가기


사용자함수 웹페이지 접근 단말기 (모바일인지) 체크하기

페이지 정보

profile_image
작성자 너갱이
댓글 0건 조회 5,377회 작성일 15-05-15 17:56

본문

//모바일접근 체크..

var Mobile = false;
var AgentStr = navigator.userAgent.toLowerCase();
var MobileArr = ['iphone','ipod','android','blackberry','windows ce','nokia','webos','opera mini','sonyericsson','opera mobi','iemobile'];
for (var model in MobileArr){
if (AgentStr.indexOf(MobileArr[model]) != -1){
Mobile = true;
break;
}

 

댓글목록

등록된 댓글이 없습니다.