반응형
/**
* 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");
}
}
반응형
'IT > JSP&javascript&jQuery' 카테고리의 다른 글
forward 와 redirect 차이 (0) | 2017.12.21 |
---|---|
jQuery를 이용한 스크롤 더보기 (0) | 2017.08.04 |
자바스크립트 - location.href / location.replace()의 차이 (0) | 2017.07.30 |
관계연산자 ==, === 의 차이 (0) | 2017.06.26 |
자바스크립트 데이터 타입 (0) | 2017.06.22 |