最近在解决 IE 升级及浏览器兼容问题,有些原生态的 js 方法与属性随着版本的不同则相应的不同,所以判断浏览器就是一个很必要的动作了,js 判断是否为 IE 浏览器

function isIE() {
 if (!!window.ActiveXObject || "ActiveXObject" in window)
  return true;
  else
  return false;
 }
// 判断浏览器类型
function getweb(){
   if((!!window.ActiveXObject || "ActiveXObject" in window){
      return "IE";
   }
   ifnavigator.userAgent.indexOf("Firefox")!=-1){
      return "Firefox";
   }
   if(navigator.userAgent.indexOf("Chrome")!=-1){
      return "Chrome";
   }
   if(navigator.userAgent.indexOf("Safari")!=-1){
      return "Safari";
   }
}