http://client.henrybuilt.com/login.php在Firefox中沒有顯示
由於某種原因,頁面上沒有顯示任何內容。
在Chrome中完全正常工作,但不知道它發生了什麼Firefox。
感謝
http://client.henrybuilt.com/login.php在Firefox中沒有顯示
由於某種原因,頁面上沒有顯示任何內容。
在Chrome中完全正常工作,但不知道它發生了什麼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
標記以紅色突出顯示有一些錯誤。
你的身體標記具有display:none
屬性設置就可以了。在styles/main.css
文件中刪除,從這個塊:
body{
margin:0;
padding:0;
background-color:#FCFCFC;
display:none;
}
你可以試試這個,而不是淡入..
$('body').css('display','block');
那麼你應該總是包含DOCTYPE剛剛在良好的狀態,雖然我不知道這是否是問題。 – thatidiotguy 2012-08-15 17:56:36
使用螢火蟲,它看起來像身體標籤顯示:沒有。 – thatidiotguy 2012-08-15 17:57:38
..如果它在Chrome上運行得很好,它可能是緩存問題,請嘗試按Ctrl + Shift + R(強制重新加載瀏覽器)並再次看到它。並添加更多內容:當您使用css時,我總是會使用下面的組合,以確保能夠看到最新的變化。 :) – 2012-08-15 18:02:09