我想得到我正在使用的浏览器的名称。目前我正在尝试' navigator.userAgent'但它显示了' chrome'适用于edge和chrome浏览器。
答案 0 :(得分:8)
这是有效的我也在使用它。它将显示完美的浏览器名称。这是demo
var isOpera = (!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;
// Firefox 1.0+
var isFirefox = typeof InstallTrigger !== 'undefined';
// At least Safari 3+: "[object HTMLElementConstructor]"
var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
// Internet Explorer 6-11
var isIE = /*@cc_on!@*/false || !!document.documentMode;
// Edge 20+
var isEdge = !isIE && !!window.StyleMedia;
// Chrome 1+
var isChrome = !!window.chrome && !!window.chrome.webstore;
// Blink engine detection
var isBlink = (isChrome || isOpera) && !!window.CSS;
答案 1 :(得分:0)
最好的方法是使用最小和经过测试的代码检测jquery-migrate,该代码旨在解决使用jQuery Migrate 3.0和升级到jQuery 3.0之前的任何兼容性问题。
if($.browser.mozilla) {
}
else if($.browser.chrome) {
}
... go on