会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Prolove
无言面对海角只燕,平静冷却内心焦灼!
js 判断浏览器类型
不用多说,请看代码
Code
1
<
script type
=
"
text/javascript
"
>
2
var
Sys
=
{}
;
3
var
ua
=
navigator.userAgent.toLowerCase();
4
if
(window.ActiveXObject)
5
Sys.ie
=
ua.match(
/
msie ([\d.]+)
/
)[
1
]
6
else
if
(document.getBoxObjectFor)
7
Sys.firefox
=
ua.match(
/
firefox\
/
([\d.]
+
)
/
)[1]
8
else
if
(window.MessageEvent
&&
!
document.getBoxObjectFor)
9
Sys.chrome
=
ua.match(
/
chrome\
/
([\d.]
+
)
/
)[1]
10
else
if
(window.opera)
11
Sys.opera
=
ua.match(
/
opera.([\d.]+)
/
)[
1
]
12
else
if
(window.openDatabase)
13
Sys.safari
=
ua.match(
/
version\
/
([\d.]
+
)
/
)[1];
14
15
//
以下进行测试
16
if
(Sys.ie) document.write(
'
IE:
'
+
Sys.ie);
17
if
(Sys.firefox) document.write(
'
Firefox:
'
+
Sys.firefox);
18
if
(Sys.chrome) document.write(
'
Chrome:
'
+
Sys.chrome);
19
if
(Sys.opera) document.write(
'
Opera:
'
+
Sys.opera);
20
if
(Sys.safari) document.write(
'
Safari:
'
+
Sys.safari);
21
22
<
/
script>
posted on
2009-04-20 09:24
Prolove
阅读(
246
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
导航
首页
新随笔
联系
订阅
管理