我正在运行一个 asp.net mvc3 网站。我想检查正在运行的 IE 版本,如果浏览器不是 ie9,我需要停止页面并发布错误消息。
是否有捷径可寻?
我试过这个
var ie = (function(){
var undef,
v = 3,
div = document.createElement('div'),
all = div.getElementsByTagName('i');
while (
div.innerHTML = '<!--[if gt IE ' + (++v) + ']><i></i><![endif]-->',
all[0]
);
return v > 4 ? v : undef;
}());
if (ie < 9) {
console.log('ie');
document.write('<div class="page-error">' + 'bad' + '</div>');
/*Must throw and not catch this exception in order for the page to stop loading further.*/
throw "Invalid page exception";
}
但它仍然呈现整个页面并显示错误。如果在正确的浏览器中没有,我该如何停止页面加载并显示错误?