急需js或jq判断ie8及以下版本浏览器不让显示页面,显示提醒用户升级浏 ...
发布网友
发布时间:2022-05-01 04:10
我来回答
共2个回答
热心网友
时间:2022-04-21 15:29
自行再修改
<script language="javascript">
function getIE()
{
if(navigator.appName == "Microsoft Internet Explorer")
{
if(navigator.appVersion.match(/7./i)=='7.')
{
//是IE7,不跳转
}
else
{
//不是,跳转
location.href='http://127.0.0.1';
}
}
}
</script>
热心网友
时间:2022-04-21 16:47
<!--[if lt IE 8]>
<scrip>
$(最大的id).css('display','none');
$(body).html('浏览器版本过低,请升级浏览器,活选用其他浏览器');
</script>
<![endif]-->追问 这种判断 我用过 我好用 完全没有效果 不知道您有没有js的代码 幸苦了