我需要能够判断页面是否正在 IE 6 中查看。如何在 javascript 中执行此操作,同时忽略 7、8 或其他浏览器等版本?

最佳答案

直接从 horse's mouth (和一个谷歌搜索):

function getInternetExplorerVersion()
// Returns the version of Internet Explorer or a -1
// (indicating the use of another browser).
{
  var rv = -1; // Return value assumes failure.
  if (navigator.appName == 'Microsoft Internet Explorer')
  {
    var ua = navigator.userAgent;
    var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
    if (re.exec(ua) != null)
      rv = parseFloat( RegExp.$1 );
  }
  return rv;
}

关于javascript - 如何检测用户是否正在运行 IE 6?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/917252/

10-09 09:09