JavaScript中Navigator对象的作用是什么?

JavaScript中Navigator对象的作用是什么?

获取有关网页当前运行的浏览器的信息,请使用内置导航器对象。您可以对该对象使用各种 Navigator 方法属性

示例

您可以尝试运行以下代码以在 JavaScript 中实现 Navigator 对象 -

<html>
   <head>
      <title>Navigator Object Example</title>
   </head>

   <body>
      <script>
         <!--
            var userAgent = navigator.userAgent;
            var opera = (userAgent.indexOf('Opera') != -1);
            var ie = (userAgent.indexOf('MSIE') != -1);
            var gecko = (userAgent.indexOf('Gecko') != -1);
            var netscape = (userAgent.indexOf('Mozilla') != -1);
            var version = navigator.appVersion;
           
            if (opera) {
               document.write("Opera based browser");
               // Keep your opera specific URL here.
            }
            else if (gecko) {
               document.write("Mozilla based browser");
               // Keep your gecko specific URL here.
            }
            else if (ie) {
               document.write("IE based browser");
               // Keep your IE specific URL here.
            }
            else if (netscape) {
               document.write("netscape based browser");
               // Keep your netscape specific URL here.
            } else {
               document.write("UnkNown browser");
            }
            // You can include version to along with any above condition.
            document.write("<br /> browser version info : " + version );
         //-->
      </script>
   </body>
</html>

以上就是JavaScript中Navigator对象的作用是什么?的详细内容,更多请关注编程之家其它相关文章

相关文章

vue阻止冒泡事件 阻止点击事件的执行 &lt;div @click=&a...
尝试过使用网友说的API接口获取 找到的都是失效了 暂时就使用...
后台我拿的数据是这样的格式: [ {id:1 , parentId: 0, name:...
JAVA下载文件防重复点击,防止多次下载请求,Cookie方式快速简...
Mip是什么意思以及作用有哪些