这篇文章主要介绍了如何基于js判断浏览器版本,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
浏览器类型判断
不考虑对 IE9 以下浏览器的判断
function getBrowserType(){
var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
var browser='unknown';
if (userAgent.indexOf("IE")!=-1) {
因为ie10-ie11的版本问题,不再支持document.all判断,所以ie判断函数要重新写了
function isIE() { //ie?
if (!!window.ActiveXObject || "ActiveXObject" in window)
return true;
else
return false;
}
第一种,只区分浏览器,不考虑版本
代码如下:
function myBrowser(){
v