대가는 결과를 만든다

Navigator 본문

개발/Javascript

Navigator

yunzema 2018. 12. 4. 15:56
반응형

Navigator Object


Docs : https://www.w3schools.com/jsref/obj_navigator.asp


- 사용자 브라우저의 정보를 포함하고 있는 obect


appCodeNameReturns the code name of the browser
appNameReturns the name of the browser
appVersionReturns the version information of the browser
cookieEnabledDetermines whether cookies are enabled in the browser
geolocationReturns a Geolocation object that can be used to locate the user's position
languageReturns the language of the browser
onLineDetermines whether the browser is online
platformReturns for which platform the browser is compiled
productReturns the engine name of the browser
userAgentReturns the user-agent header sent by the browser to the server


*이 object를 활용하여 (userAgent) 클라이언트의 브라우저 플랫폼이나 브라우저 종류 파악이 가능하다.


'개발 > Javascript' 카테고리의 다른 글

web worker  (0) 2019.07.25
[스터디] Javascript ES6 feature 몇 가지 정리  (0) 2019.02.01
javascript의 prototype이란?  (0) 2018.12.20
[이슈] jQuery click 이벤트 중복으로 인한 문제  (4) 2018.12.14
Ajax  (0) 2018.06.06
Comments