当网站在IE 8及以下版本的IE中打开时,我需要重定向到新的html页面。 我的网站是完全静态的HTML。
我需要解决方案将我的网站重定向到新页面。
答案 0 :(得分:1)
尝试在http-equiv属性中刷新,并确保在头标记中定义。
<!--[if lt IE 9]>
<meta http-equiv="refresh" content="0;url=http://www.whatever"/>
<![endif]-->
答案 1 :(得分:0)
之前从未见过这种方法。我就是这样做的:
<!--[if lt IE 9]>
<script type="text/javascript">window.location = '77ebrowser.html'</script>
<![endif]-->