我想在加载页面时检测浏览器版本。即
如果用户使用的是Internet Explorer 8或更低版本,则应显示警报。
如何使用Javascript或Jquery管理它?
答案 0 :(得分:1)
要使用IE8及更低版本向网站访问者显示消息,您应该使用conditional comment:
<!--[if lte IE 8]>
Almost any HTML can go here, just not comments
<script>
alert("You're using an outdated browser!");
</script>
<h1>You're using an outdated browser!</h1>
<![endif]-->