我有一个奇怪的问题...我正在开发一个搜索房屋租赁的网络应用程序,该网站在FF,Chrome中表现出色,但在IE中我得到一个白页.... 你能不能提示代码是什么?也许有些java脚本问题? 我已经挖了,但我被困了。
答案 0 :(得分:0)
我建议将这些HTML错误作为调试的第一个阶段!:http://validator.w3.org/check?verbose=1&uri=http%3a%2f%2frentforme.net%2f。那里列出了81个错误。从快速查看看,<HEAD>
和<BODY>
开始/结束标记重叠。
答案 1 :(得分:0)
问题是:
</head>
<!--[if lt IE 7]>
<div style='border: 1px solid #F7941D; background: #FEEFDA; text-align: center; clear: both; height: 75px; position: relative;'>
<div style='position: absolute; right: 3px; top: 3px; font-family: courier new; font-weight: bold;'><a href='#' onclick='javascript:this.parentNode.parentNode.style.display="none"; return false;'><img src='http://www.ie6nomore.com/files/theme/ie6nomore-cornerx.jpg' style='border: none;' alt='Close this notice'/></a></div>
<div style='width: 640px; margin: 0 auto; text-align: left; padding: 0; overflow: hidden; color: black;'>-->;
</head>
你有两个关闭头部的标签,你之间有一个很大的空div。这就是IE上显示的内容。