http://client.henrybuilt.com/login.php
出于某种原因,页面上没有显示任何内容。
在 Chrome 中运行良好,但不知道 Firefox 发生了什么。
谢谢
您的身体标签上display:none
设置了属性。从styles/main.css
文件中的这个块中删除它:
body{
margin:0;
padding:0;
background-color:#FCFCFC;
display:none;
}
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
标签以红色突出显示,指出存在一些错误。
你可以试试这个而不是fadeIn ..
$('body').css('display','block');