브라우저 종류 확인 (navigator.userAgent)
const mobileTypeFn = () => {
const uagent = navigator.userAgent.toLowerCase()
const android_agent = uagent.search("android")
const iphone = uagent.search("iphone")
const ipad = uagent.search("ipad")
if (android_agent > -1) { //안드로이드
return 'android'
}
else if (iphone > -1 || ipad > -1) { //아이폰
return 'iphone'
}
else return 'pc'
}
반응형
'개발 > Javascript' 카테고리의 다른 글
[jQuery] css 가져오기 변경하기 (0) | 2023.07.10 |
---|---|
[jQuery] 페이지마다 해당 메뉴명 스타일 주기 (0) | 2023.05.10 |
[js] 자주 쓰는 정규식 함수 만들기 (0) | 2023.02.27 |
[js] 페이지 리다이렉트 (location.href vs location.replace) (0) | 2023.02.27 |
[js] 숫자가 정수인지 소수점인지 체크 (ft. inInteger(), parseInt()) (0) | 2022.12.12 |
댓글