Tel. 042-353-2371

ÆòÀÏ ¿ÀÀü 9½Ã ~ ¿ÀÈÄ 7½Ã
±â¾÷ÀºÇà

010-8649-6758

¿¹±ÝÁÖ:Á¦ÁÖ»ç¶û(¼ÛÁø¾Æ)
JAVASCRIPT
Ȩ > ȨÆäÀÌÁöÁ¦ÀÛ±³½Ç > JAVASCRIPT

Ä«Å×°í¸® Object
Á¦¸ñ Navigator object
ÀÛ¼ºÀÚ freewebkorea
ÀÛ¼ºÀÏÀÚ 2009-12-09
Á¶È¸¼ö 1664

Navigator Object

Navigator object´Â client(»ç¿ëÀÚ) ÀÇ ºê¶ó¿ìÀú¿¡ ´ëÇÑ Á¤º¸¸¦ ¾Ë·Á ÁÖ´Â ObjectÀÔ´Ï´Ù.
Navigator Object Properties
Property ¼³ ¸í
appCodeName ºê¶ó¿ìÀúÀÇ code name return
appMinorVersion ºê¶ó¿ìÀúÀÇ minor version return
appName ºê¶ó¿ìÀú name return
appVersion Os platform°ú ºê¶ó¿ìÀú version return
browserLanguage ºê¶ó¿ìÀú »ç¿ë ¾ð¾î return
cookieEnabled Cookie °ªÀ» Çã¿ëÇÏ´ÂÁöÀÇ ¿©¿ì(Boolean) return
cpuClass ºê¶ó¿ìÀú ½Ã½ºÅÛÀÇ C.P.U µî±Þ return
onLine ½Ã½ºÅÛÀÇ Online ¿©ºÎ(boolean) return
platform ºê¶ó¿ìÀú platform ¸íĪ return
systemLanguage ½Ã½ºÅÛ »ç¿ë ¾ð¾î return
userAgent HTTP user-agent return
userLanguage ÇöÀç »ç¿ëÀÚ ¼³Á¤ ¾ð¾î return




Navigator object ¿¹Á¦
<html>
    <head>
        <title>Navigator object ¸¦ ÀÌ¿ëÇÏ¿© ºê¶ó¿ìÀú Á¤º¸ ¾Ë¾Æ³»±â</title>
    </head>
    <body>
        <script type="text/javascript">
        var x = navigator
        document.write("CodeName=" + x.appCodeName)
        document.write("<br />")
        document.write("MinorVersion=" + x.appMinorVersion)
        document.write("<br />")
        document.write("Name=" + x.appName)
        document.write("<br />")
        document.write("Version=" + x.appVersion)
        document.write("<br />")
        document.write("CookieEnabled=" + x.cookieEnabled)
        document.write("<br />")
        document.write("CPUClass=" + x.cpuClass)
        document.write("<br />")
        document.write("OnLine=" + x.onLine)
        document.write("<br />")
        document.write("Platform=" + x.platform)
        document.write("<br />")
        document.write("UA=" + x.userAgent)
        document.write("<br />")
        document.write("BrowserLanguage=" + x.browserLanguage)
        document.write("<br />")
        document.write("SystemLanguage=" + x.systemLanguage)
        document.write("<br />")
        document.write("UserLanguage=" + x.userLanguage)
        </script>
    </body>
</html>
ÄÚµå ½ÇÇà Çϱâ