test2.html 1.2 KB

123456789101112131415161718192021222324
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=utf-8">
  5. <title>javascript获取访问者设备信息</title>
  6. </head>
  7. <body>
  8. <script type="text/javascript">
  9. document.write("userAgent: " + navigator.userAgent + "<br><br>");
  10. document.write("appName: " + navigator.appName + "<br><br>");
  11. document.write("appCodeName: " + navigator.appCodeName + "<br><br>");
  12. document.write("appVersion: " + navigator.appVersion + "<br><br>");
  13. document.write("appMinorVersion: " + navigator.appMinorVersion + "<br><br>");
  14. document.write("platform: " + navigator.platform + "<br><br>");
  15. document.write("cookieEnabled: " + navigator.cookieEnabled + "<br><br>");
  16. document.write("onLine: " + navigator.onLine + "<br><br>");
  17. document.write("userLanguage: " + navigator.language + "<br><br>");
  18. document.write("mimeTypes.description: " + navigator.mimeTypes[1].description + "<br><br>");
  19. document.write("mimeTypes.type: " + navigator.mimeTypes[1].type + "<br><br>");
  20. document.write("plugins.description: " + navigator.plugins[3].description + "<br><br>");
  21. </script>
  22. </body>
  23. </html>