码迷,mamicode.com
首页 > 编程语言 > 详细

javascript判断浏览器是否为IE内核,edge

时间:2018-10-19 22:01:33      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:compare   内核   obj   object   else   ISE   nbsp   支持   navig   

  当前IE内核和edge浏览器还有很多功能不支持,例如Promise,Webgl2.0,所以经常需要判断当前浏览器的种类,可以使用如下方法判断是否为IE内核或者edge。

 1 var getExplorer = (function () {
 2     var explorer = window.navigator.userAgent,
 3         compare = function (s) { return (explorer.indexOf(s) >= 0); },
 4         ie11 = (function () { return ("ActiveXObject" in window) })();
 5     if (compare("MSIE") || ie11) { return ‘ie‘; }
 6     else if (compare("Firefox") && !ie11) { return ‘Firefox‘; }
 7     else if (compare("Chrome") && !ie11) {
 8         if (explorer.indexOf("Edge") > -1) {
 9             return ‘Edge‘;
10         } else {
11             return ‘Chrome‘;
12         }
13     }
14     else if (compare("Opera") && !ie11) { return ‘Opera‘; }
15     else if (compare("Safari") && !ie11) { return ‘Safari‘; }
16 
17 })()
18 
19 if (getExplorer == ‘ie‘) {
20     alert(‘当前浏览器内核为IE内核,请使用非IE内核浏览器!‘);
21 }
22 if (getExplorer == ‘Edge‘) {
23     alert(‘当前浏览器为Edge,请使用非IE内核浏览器!‘);
24 }

 

javascript判断浏览器是否为IE内核,edge

标签:compare   内核   obj   object   else   ISE   nbsp   支持   navig   

原文地址:https://www.cnblogs.com/xinwenpeng/p/9818749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!