判断浏览器类型JS

半世苍凉 提交于 2020-03-29 08:01:24

// 判断浏览器类型

    getExplorer() {
      var explorer = window.navigator.userAgent,
        compare = function (s) { return (explorer.indexOf(s) >= 0); },
        ie11 = (function () { return ("ActiveXObject" in window) })();
      if (compare("MSIE") || ie11) { return 'ie'; }
      else if (compare("Firefox") && !ie11) { return 'Firefox'; }
      else if (compare("Chrome") && !ie11) {
        if (explorer.indexOf("Edge") > -1) {
          return 'Edge';
        } else {
          return 'Chrome';
        }
      }
      else if (compare("Opera") && !ie11) { return 'Opera'; }
      else if (compare("Safari") && !ie11) { return 'Safari'; }
    },

判断是不是IE

		var userAgent = navigator.userAgent
		if (-1 !== userAgent.indexOf("Trident")) {
			alert('IE浏览器')
		} else {
			alert('不是IE浏览器')
		}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!