IT/JSP&javascript&jQuery

userAgent 구분 스크립트 (Android/iOS/Mobile)

바다, 2017. 6. 22. 09:58
반응형
/**
 * Android 단말기 인지 확인
 */
this.isAndroid = function() {
try{      
return (/android/i.test(navigator.userAgent.toLowerCase()));
} catch(e) {
self.log(e,"isAndroid");
}
}
/**
 * iOS 단말기 인지 확인
 */
this.isIos = function() {
try{
return (/iphone|ipad|ipod/i.test(navigator.userAgent.toLowerCase()));                  
} catch(e) {
self.log(e,"isIos");
}
}
/**
 * 모바일인지 판별한다.
 */
this.isMobile = function() {
try {
return (/iphone|ipad|ipod|android|opera\smini|opera\smobi|symbian|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));                  
} catch (e) {
self.log(e,"isMobile");
}
}


반응형