时间:2021-07-01 10:21:17 帮助过:3人阅读
<script type="text/javascript">
var isIE = function(ver){
var b = document.createElement('b');
b.innerHTML = '<!--[if IE '+ ver +']><i></i><!--[enfif]-->';
return b.getElementsByTagName('i').length === 1;
}
if(isIE(6)){
alert(6);
}
if(isIE(7)){
alert(7);
}
if(isIE(8)){
alert(8);
}
if(isIE(9)){
alert(9);
}
</script>
不过还是有点缺陷:ie10跟11判断不了
高于ie9
<script type="text/javascript">
var isIE =(function(){
var browser = {};
return function(ver,c){
var key = ver ? ( c ? "is"+c+"IE"+ver : "isIE"+ver ) : "isIE";
var v = browser[key];
if( typeof(v) != "undefined"){
return v;
}
if( !ver){
v = (navigator.userAgent.indexOf('MSIE') !== -1 || navigator.appVersion.indexOf('Trident/') > 0) ;
}else {
var match = navigator.userAgent.match(/(?:MSIE |Trident\/.*; rv:|Edge\/)(\d+)/);
if(match){
var v1 = parseInt(match[1]) ;
v = c ? ( c == 'lt' ? v1 < ver : ( c == 'gt' ? v1 > ver : undefined ) ) : v1== ver ;
}else if(ver <= 9){
var b = document.createElement('b')
var s = '<!--[if '+(c ? c : '')+' IE ' + ver + ']><i></i><![endif]-->';
b.innerHTML = s;
v = b.getElementsByTagName('i').length === 1;
}else{
v=undefined;
}
}
browser[key] =v;
return v;
};
}());
if(isIE(10)){
//isIE 10
}
</script>
判断浏览器是否为ie浏览器。使用 if (window.ActiveXObject || "ActiveXObject" in window) 这行代码判断浏览器的类型,如果为ie浏览器返回true,否则返回false。案例中将弹出一个alert弹出框,用于显示是否为ie浏览器。
<script>
function test(){
if (window.ActiveXObject || "ActiveXObject" in window){
alert("ie")
}else{
alert("not ie")
}
}
</script>
jquery 判断ie版本和浏览器
function JudgeBroswer() { if($.browser.msie) { alert("this is msie!"); //IE } else if($.browser.safari) { alert("this is safari!"); //Safari } else if($.browser.mozilla) { alert("this is mozilla!"); //Firefox } else if($.browser.opera) { alert("this is opera"); //Opera } }
以上就是IE版本是怎么判断的?的详细内容,更多请关注Gxl网其它相关文章!