我需要一个网站的所有IE重定向,找不到一个有效的

时间:2014-01-17 12:48:14

标签: internet-explorer redirect

我正在使用

<!--[if IE]>
<script type="text/javascript">
    window.location = "http://www.google.com";
</script>
<![endif]-->

虽然在测试时它没有工作,但我正在运行IE v11,有什么原因导致它无效吗?

非常感激并且有点绝望。

马特

1 个答案:

答案 0 :(得分:0)

代码看起来很好。可能是冲突的Javascripts导致错误?请尝试使用META标记:

 <!--[if IE]>
<META http-equiv="refresh" content="0;URL=http://www.google.com">
<![endif]-->