Develop/Javascript
[Javascript] Android 판별
RianShin
2020. 11. 25. 15:53
728x90
반응형
SMALL
isAndroid: function isAndroid() {
try {
return /android/i.test(navigator.userAgent.toLowerCase());
} catch (e) {
throw new JsExecutionErrror('utils - isAndroid');
}
},
728x90
반응형
LIST