var currentOS;
var mobile = (/iphone|ipad|ipod|android/i.test(navigator.userAgent.toLowerCase()));
if (mobile) {
// 유저에이전트를 불러와서 OS를 구분합니다.
var userAgent = navigator.userAgent.toLowerCase();
if (userAgent.search("android") > -1)
currentOS = "android";
else if ((userAgent.search("iphone") > -1) || (userAgent.search("ipod") > -1)
|| (userAgent.search("ipad") > -1))
currentOS = "ios";
else
currentOS = "else";
}
else {
// 모바일이 아닐 때
currentOS = "nomobile";
}
'퍼블리셔(프론트) > js' 카테고리의 다른 글
onclick 을 활성화 하기위한 환경(기본상식) (0) | 2020.06.24 |
---|---|
magnificPopup 레이어팝업 모바일 스크롤 방지 js, css (0) | 2020.05.04 |
javascript modal (0) | 2019.09.06 |
jQuery focus/focusout (0) | 2018.01.23 |
input 입력형식 지정 - mask.js (0) | 2017.05.23 |