用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - javascript代码库

JS判断浏览器种类(IE firefox chrome opera safari

2014-11-01 作者: js特效源码下载举报

[javascript]代码库

function isBrowser(){
	var Sys={};
	var ua=navigator.userAgent.toLowerCase();
	var s;
	(s=ua.match(/msie ([\d.]+)/))?Sys.ie=s[1]:
	(s=ua.match(/firefox\/([\d.]+)/))?Sys.firefox=s[1]:
	(s=ua.match(/chrome\/([\d.]+)/))?Sys.chrome=s[1]:
	(s=ua.match(/opera.([\d.]+)/))?Sys.opera=s[1]:
	(s=ua.match(/version\/([\d.]+).*safari/))?Sys.safari=s[1]:0;
	if(Sys.ie){//Js判断为IE浏览器
		alert('http://www.phpernote.com'+Sys.ie);
		if(Sys.ie=='9.0'){//Js判断为IE 9
		}else if(Sys.ie=='8.0'){//Js判断为IE 8
		}else{
		}
	}
	if(Sys.firefox){//Js判断为火狐(firefox)浏览器
		alert('http://www.phpernote.com'+Sys.firefox);
	}
	if(Sys.chrome){//Js判断为谷歌chrome浏览器
		alert('http://www.phpernote.com'+Sys.chrome);
	}
	if(Sys.opera){//Js判断为opera浏览器
		alert('http://www.phpernote.com'+Sys.opera);
	}
	if(Sys.safari){//Js判断为苹果safari浏览器
		alert('http://www.phpernote.com'+Sys.safari);
	}
}


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...