判断是否IE浏览器的js代码

发布时间:2020-07-20编辑:脚本学堂
一段判断是否IE浏览器的js代码,用于检测是否纯正的IE浏览器内核,有需要的朋友参考下。

例子,检测是否IE浏览器。

代码:
 

复制代码 代码示例:

function isTrueIE() {
 if (navigator.userAgent.indexOf("MSIE") > 0) {
  // ie 内核
  if (navigator.userAgent.indexOf("Tablet PC") > 0) {
    // x64 纯ie
    return true;
  }
  else if (navigator.userAgent.indexOf("Maxthon") > 0 || navigator.userAgent.indexOf("SE ") > 0 ||navigator.userAgent.indexOf("360") > 0 || navigator.userAgent.indexOf("QQ") > 0 ||
 navigator.userAgent.indexOf("Trident") > 0) {

   // IE内核非IE浏览!
    return false;
   }
   else {
   // x32 纯ie
   return true;
   }
  }
  return false;
}