-
Navigator: 代表当前浏览器的信息, 通过Navigator我们就能判断用户当前是什么浏览器 (userAgent方法)
var agent = window.navigator.userAgent;
if (/chrom/i.test(agent)){
alert("当前是谷歌浏览器");
}else if (/firefox/i.test(agent)){
alert("当前是火狐浏览器");
}else if (/msie/i.test(agent)){
alert("当前是低级IE浏览器");
}else if ("ActiveXObject" in window){
alert("当前是高级IE浏览器");
}
网友评论