http://client.henrybuilt.com/login.php
何らかの理由で、ページに何も表示されません。
Chrome ではまったく問題なく動作しますが、Firefox では何が起こっているのかわかりません。
ありがとう
http://client.henrybuilt.com/login.php
何らかの理由で、ページに何も表示されません。
Chrome ではまったく問題なく動作しますが、Firefox では何が起こっているのかわかりません。
ありがとう
body タグには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
タグは赤色で強調表示され、エラーがあることを示しています。
フェードインの代わりにこれを試してもらえますか..
$('body').css('display','block');