javascript Navigator对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Navigator对象相关的知识,希望对你有一定的参考价值。

0.Navigator 对象包含有关浏览器的信息,通常用于检测浏览器与操作系统的版本。

 

1.对象属性

技术分享

2.

   var browser=navigator.appName;
   var b_version=navigator.appVersion;
   document.write("Browser name"+browser);
   document.write("<br>");
   document.write("Browser version"+b_version);

 

以上是关于javascript Navigator对象的主要内容,如果未能解决你的问题,请参考以下文章

使用 navigator.geolocation.watchPosition 的 javascript 对象变量和方法范围问题

JavaScript Window Navigator

Navigator对象

Navigator对象/userAgent

javascript Navigator对象

JavaScript之DOM-7 Window常用子对象(navigator对象location对象history对象screen对象)