如何用javascript得知用户的浏览器和操作系统及其版本号

类别:网站制作 点击:0 评论:0 推荐:

各位高人:

       大家好,我最近正在学习javascript,现遇到一个技术性问题,恳请高人给以指示!

      我用 navigator.userAgent  方法可以得到在线用户的浏览器及操作系统.(因为我得

  是Windos 2003 浏览器是 Internet Explorer  6.0 )

源码如下:
<html>
<body>
<script  language="javascript">
  document.write(" online user navigator.userAgent="+navigator.userAgent+ "<br />")
</script>
</body>
</html>
运行结果如下:
online user  navigator.userAgent=Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.1.4322)

我只知道在  Windows 操作系统下 "MSIE 6.0" 就是Microsoft Internet Explorer  6.0 ;

" Windows NT 5.2" 就是我们所用的 Windos 2003 ; 现可以通过字符串截取得到MSIE 6.0和

Windows NT 5.2 这两个参数, 再判断其后的 "6.0" 和"NT 5.2" 参数可得知在线人的 版本号了,

如 NT 5.1 是 微软的 XP 系统, NT 5.0 是微软的 2000 系统, 9X 是 微软的 ME 系统  95 是  微软的 98 系统 等,目前, 本人只能做到这一步.然而在线人的操作系统不是微软的,浏览器也不是微软的时候.那么  navigator.userAgent 的结果信息有如何解析呢。我手头上的现有的资料如下:可能不全

 使用opera的浏览器:

  mozilla/4.0  (compatible;  opera/3.0;  windows  95)  3.50b10

  frontpage编辑器:

  mozilla/2.0  (compatible;  ms  frontpage  3.0)

  使用sun操作系统:

  mozilla/3.01gold  (x11;  i;  sunos  5.7  i86pc)

  使用powerpc的mac机:

  mozilla/4.0  (compatible;  msie  4.5;  mac_powerpc)

     使用netscape的浏览器:

  mozilla/4.03  〔en〕  (win95;  i)

  mozilla/4.08  〔en〕  (winnt;  u  ;nav)

  mozilla/4.5  〔en〕  (winnt;  u)

  mozilla/3.04gold  (win95;  i)

   Microsoft Internet Explorer4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)

以上 是我的问题 和 解决方法 ,恳请诸位高人给以指示 ,帮助.
我的 email是:[email protected]. 现居住再西安市西高新开发区.

                                                                                                               谢谢

 

 

 

 

 

 

 

 

 


  

本文地址:http://com.8s8s.com/it/it31235.htm