使用 JavaScript 仅针对 IE11 的最不容易出错的方法是什么?
注意:这实际上应该只用于分析或通知用户他们正在使用的浏览器。对于其他一切,都有特征检测。
使用 JavaScript 仅针对 IE11 的最不容易出错的方法是什么?
注意:这实际上应该只用于分析或通知用户他们正在使用的浏览器。对于其他一切,都有特征检测。
IE 11 的用户代理字符串目前是这个:
Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv 11.0) like Gecko
Windows 10 示例:
Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
这意味着您可以简单地测试版本 11.xx,
var isIE11 = /Trident.*rv[ :]*11\./.test(navigator.userAgent);
Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)
Trident/X
押注现在应该是真正的版本控制这一事实可能也是安全的。
IE11 在它的 UA 字符串中保留了“Trident”,但丢弃了 MSIE。检测浏览器是否为IE11或以上(IE12、IE13等)的简单方法是:
var isAtLeastIE11 = !!(navigator.userAgent.match(/Trident/) && !navigator.userAgent.match(/MSIE/));
如果您只想要IE11(并且您不希望未来版本的 IE 匹配),请执行以下操作:
var isIE11 = !!(navigator.userAgent.match(/Trident/) && navigator.userAgent.match(/rv[ :]11/));
var isIE11 = !!navigator.userAgent.match(/Trident\/7.0; rv 11/);
来源:http ://www.nczonline.net/blog/2013/07/02/internet-explorer-11-dont-call-me-ie/
这将设置ie
为 IE 的版本,如果没有,则设置为 0。它适用于 1 到 11,但如果 Microsoft 放弃 Trident 引擎,则可能无法检测到未来的版本。
var ie = 0;
try { ie = navigator.userAgent.match( /(MSIE |Trident.*rv[ :])([0-9]+)/ )[ 2 ]; }
catch(e){}
您可能还对我的相关、更详细的答案感兴趣。
我使用以下模式来定位所有 IE 浏览器。如果您只需要 IE 11,则可以将其缩短。
/msie|trident|edge/g.test(navigator.userAgent.toLowerCase());
祝你好运!
弗雷德里克
这是一个可用于检测任何浏览器的脚本:
<script>
// Opera
var isOpera = (!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;
// Firefox 1.0+
var isFirefox = typeof InstallTrigger !== 'undefined';
// Safari 3.0+ "[object HTMLElementConstructor]"
var isSafari = /constructor/i.test(window.HTMLElement) || (function (p) { return p.toString() === "[object SafariRemoteNotification]"; })(!window['safari'] || safari.pushNotification);
// 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;
if (isFirefox==true) {
alert(isFirefox)
$('.container-fluid').css({"overflow-y":"auto","height":"150%"});
}
</script>
尝试这个,
navigator.sayswho= (function(){
var N= navigator.appName, ua= navigator.userAgent, tem;
var M= ua.match(/(opera|chrome|safari|firefox|msie)\/?\s*(\.?\d+(\.\d+)*)/i);
if(M && (tem= ua.match(/version\/([\.\d]+)/i))!= null) M[2]= tem[1];
M= M? [M[1], M[2]]: [N, navigator.appVersion,'-?'];
return M;
})();
针对IE=11更新
用这个
var isIE11 = navigator.userAgent.match(/Trident\/7.0; rv 11.0/);
阅读此http://msdn.microsoft.com/en-us/library/ie/bg182625%28v=vs.85%29.aspx