1

我的网站在 Internet Explorer 9 中崩溃,但在 Firefox 和 Chrome 中运行良好。主页在 IE 中加载正常,但任何帖子页面都会崩溃,例如在我的联系页面上:http ://www.poker006.com/2008/02/contact-me.html

我不知道这只是我的 Internet Explorer 版本还是我网站上的代码有问题。

有任何想法吗?谢谢。

4

3 回答 3

2

使用HTML-Validator检查您的页面。它有 281 个错误和 302 个警告。

于 2012-04-28T10:12:44.847 回答
0

它可能是一个附加组件或您为 IE 安装的东西导致了问题。转到您的主页,按 F12 进入开发工具,然后单击脚本并按开始。转到该 URL 以查看您的页面的任何错误。

您的网站看起来像是使用 Wordpress 创建的。不应该是特定浏览器的任何重大问题,否则您会看到它。

于 2012-04-28T19:15:14.617 回答
0


它在 IE9 中对我来说工作得很好:


我建议在您的页面上添加条件评论:

    <!--[if lt IE 8]>
     <!--This will alert anyone using IE8 and below-->
       <script>
         alert("Please Update Your Browser");
       </script>
    <![endif]-->

您还可以重定向它们:

    <!--[if lt IE 8]>
     <!--This will redirect anyone using IE8 and below-->
      meta HTTP-EQUIV="REFRESH" content="0; url=http://windows.microsoft.com/en-us/internet-explorer/products/ie/home">
    <![endif]-->

或者,当然,两者都有:

    <!--[if lt IE 8]>
     <!--This will alert & redirect anyone using IE8 and below-->
       <script>
         alert("Please Update Your Browser");
       </script>
      meta HTTP-EQUIV="REFRESH" content="0; url=http://windows.microsoft.com/en-us/internet-explorer/products/ie/home">
    <![endif]-->
于 2012-04-28T08:00:25.643 回答