我的网站在Internet Explorer 9中崩溃,但在Firefox和Chrome中运行良好。主页在IE中加载正常但任何帖子页面崩溃,例如在我的联系页面上:http://www.poker006.com/2008/02/contact-me.html
我不知道这是我的Internet Explorer版本还是我网站上的代码有问题。
有什么想法吗?感谢。
答案 0 :(得分:2)
使用HTML-Validator检查您的页面。它有281个错误和302个警告。
答案 1 :(得分: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]-->
答案 2 :(得分:0)
它可能是一个附加组件或您为IE安装的导致问题的东西。转到您的主页,按F12 for Developer工具,然后单击Script并按Start。转到该网址,查看您网页的任何错误。
您的网站看起来像是使用Wordpress创建的。不应该是特定浏览器的任何重大问题,否则你会看到它。