How to Redirect all IE users to a new page

后端 未结 8 1180
独厮守ぢ
独厮守ぢ 2020-12-25 14:45

My programmer is on vacation so I need your help! I discovered a page that has a bug for IE users. I want to redirect all IE users to a different page.

How can I d

相关标签:
8条回答
  • 2020-12-25 15:17

    Or, a non-JS solution, put the following in your head section:

    <!--[if IE]>
    <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.google.com">
    <![endif]-->
    
    0 讨论(0)
  • 2020-12-25 15:17

    Support for conditional comments has been removed in Internet Explorer 10 standards

    I'm use this dirty hack for redirecting IE10+ users

    <script type="text/javascript">
        var check = true;
    </script>
    <!--[if lte IE 9]>
    <script type="text/javascript">
        var check = false;
    </script>
    <![endif]-->
    <script type="text/javascript">
        if (check) {
            window.location = "page_for_ie10+.html";
        }
    </script>
    
    0 讨论(0)
提交回复
热议问题