0

http://client.henrybuilt.com/login.php

出于某种原因,页面上没有显示任何内容。

在 Chrome 中运行良好,但不知道 Firefox 发生了什么。

谢谢

4

3 回答 3

0

您的身体标签上display:none设置了属性。从styles/main.css文件中的这个块中删除它:

body{
    margin:0;
    padding:0;
    background-color:#FCFCFC;
    display:none;
}
于 2012-08-15T17:57:29.277 回答
0

Firefox 抛出此警告

The character encoding of the HTML document was not declared. The document will render
with garbled text in some browser configurations if the document contains characters from
outside the US-ASCII range. The character encoding of the page must to be declared in the 
document or in the transfer protocol.

这可能是一个原因。

我附上了视图源代码的样子。该html标签以红色突出显示,指出存在一些错误。

错误

于 2012-08-15T18:07:05.923 回答
0

你可以试试这个而不是fadeIn ..

$('body').css('display','block'); 
于 2012-08-25T12:07:12.060 回答