IE重定向方法

时间:2019-04-15 15:23:15

标签: html css internet-explorer

为IE使用不同的HTML

我已经开发了一个CSS Grid站点,该站点可与IE以外的所有浏览器一起使用,并尝试使用Autoprefixer进行了改进,但并未解决所有问题,其中某些问题可能与Grid不相关。我正在寻找有关将 ALL IE浏览器重定向到完全不同的HTML文件的建议,并希望提出建议。我已经有可以与IE一起使用的单独的HTML和CSS文件。感谢您的任何建议。

1 个答案:

答案 0 :(得分:0)

我在另一篇文章中发现了这一点,它似乎运行良好:

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

<!-- For IE > 9 -->
<script type="text/javascript">
    if (window.navigator.msPointerEnabled) {
        window.location = "http://bobabend.com/index-old-as-of-3-7-2019.html";
    }
</script>