//判断浏览器版本
function CheckBrowser() {
var sys = {};
var ua = navigator.userAgent.toLowerCase();
if (ua.match(/msie/) != null || ua.match(/trident/) != null) {
//哈哈,现在可以检测ie11.0了!
var BrowserVersion = ua.match(/msie ([\d.]+)/) != null ? ua.match(/msie ([\d.]+)/)[1] : ua.match(/rv:([\d.]+)/)[1];
alert("IE:"+BrowserVersion);
}
else {
var s;
(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.firefox) {
alert('Firefox' + sys.firefox);
}
if (sys.chrome) {
alert('Chrome' + sys.chrome);
}
if (sys.opera) {
alert('Opera' + sys.opera);
}
if (sys.safari) {
alert('Safari' + sys.safari);
}
}
}