如何用Javascript检测到所有的IE版本
Posted 人最大的荣耀不在于从未失败,而在于每次失败以后都能东山再起
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用Javascript检测到所有的IE版本相关的知识,希望对你有一定的参考价值。
如何用javascript检测到所有的IE版本
function GetIEVersion() { var sAgent = window.navigator.userAgent; var Idx = sAgent.indexOf("MSIE"); ? // If IE, return version number. if (Idx > 0) return parseInt(sAgent.substring(Idx+ 5, sAgent.indexOf(".", Idx))); ? // If IE 11 then look for Updated user agent string. else if (!!navigator.userAgent.match(/Trident\/7\./)) return 11; ? else return 0; //It is not IE } ? if (GetIEVersion() > 0) alert("This is IE " + GetIEVersion()); else alert("This is not IE."); |
?
?
以上是关于如何用Javascript检测到所有的IE版本的主要内容,如果未能解决你的问题,请参考以下文章
javascript 检测Internet Explorer(IE)到版本11和Edge(12+)