javascript IE浏览器检测

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript IE浏览器检测相关的知识,希望对你有一定的参考价值。

function init(){						
    (function(){						
          var browser = {						
       docModeIE:null,						
        }, tmp;						
        tmp = document.documentMode;						
        try{						
          document.documentMode = "";						
        }						
        catch(e){};						
        browser.isIE = typeof document.documentMode == "number" || new Function("return/*@cc_on!@*/!1")();						
        try {						
          document.documentMode = tmp;						
        }						
        catch(e){};						
        if (browser.isIE)						
        {						
          IE = true;						
        }else{						
            IE = false; 						
        };						
      })();						
    if(IE == true) {						
          "Your code for IE Browsers here"						
    } else {						
          "Your code for NOT IE Browsers here"						

以上是关于javascript IE浏览器检测的主要内容,如果未能解决你的问题,请参考以下文章

javascript IE浏览器检测

JavaScript:如果它处于 IE7 或 IE8 兼容模式,我可以检测到 IE9 吗?

如何在 Asp.net 中使用 javascript 检测 IE 11

在 JavaScript 中检测 IE 版本(v9 之前)

在 IE 中为 SaveAs 对话框进行特征/对象检测的可靠 Javascript 方法

javascript浏览器用户代理检测脚本实现