判断是否是IE(包含IE11)

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-1 10:33   454   0

 判断是否是IE(包含IE11)

 if(!!window["ActiveXObject"] || "ActiveXObject" in window)
  {
       alert("ie");
   }else
   {
      alert("不是ie");
   }




//——————————————————————————————————————————————————————————————————————————//
$(function(){
    varSys={};
   var ua= navigator.userAgent.toLowerCase();
    var s;
   (s= ua.match(/rv:([\d.]+)\) like gecko/))?Sys.ie= s[1]:
    (s= ua.match(/msie ([\d.]+)/))?Sys.ie= s[1]:
   (s= ua.match(/firefox\/([\d.]+)/))?Sys.firefox= s[1]:
    (s= ua.match(/chrome\/([\d.]+)/))?Sys.chrome= s[1]:
   (s= ua.match(/opera.([\d.]+)/))?Sys.opera= s[1]:
    (s= ua.match(/version\/([\d.]+).*safari/))?Sys.safari= s[1]:0;
   
    if(Sys.ie) $('span').text('IE: ' +Sys.ie);
   if(Sys.firefox) $('span').text('Firefox: ' +Sys.firefox);
    if(Sys.chrome) $('span').text('Chrome: ' +Sys.chrome);
   if(Sys.opera) $('span').text('Opera: ' +Sys.opera);
    if(Sys.safari) $('span').text('Safari: ' +Sys.safari);
});

转载于:https://www.cnblogs.com/seanp/p/6522098.html

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP