1

私の Web サイトは 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


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 に答える