如果浏览器IE8,通过jQuery打开自定义HTML页面

时间:2015-05-26 18:01:37

标签: javascript jquery

我想浏览器检测和控制。 尝试这种方式,它的工作原理:

  <!--[if IE 8]>
  <script type="text/javascript">
    alert('hey');
  </script>
  <![endif]-->

但我想,如果该网站在IE8上打开,请获取custom.html页面。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

选项1.使用HTACCESS(这是会做的事情):

RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} "MSIE [8]" [NC]
RewriteRule ^(.*)$ http://domain/custom.html [R=301,L]

选项2.使用JavaScript:

<!--[if gte IE 8]>
   <script type="text/javascript">
   window.location.replace('link to custom.html goes here')
   </script>
<![endif]-->