我需要能够判断是否在IE 6中查看了某个页面。如何在忽略7,8或其他浏览器等版本的情况下在javascript中执行此操作?
答案 0 :(得分:9)
直接从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;
}
答案 1 :(得分:6)
您可以使用conditional comments。