要获取有关网页当前运行的浏览器的信息,请使用内置导航器对象。您可以对该对象使用各种 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对象的作用是什么?的详细内容,更多请关注编程之家其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。