2012-05-04 72 views
-5

所以是的,我完全不知道,我比較了DiffNow中的不同文件。爲什麼我的網站在FF中完美運行,但不在Chrome/IE中運行?

我真的不知道任何代碼給你,因爲我不知道在哪裏看。它建在php/html/mysql/jquery中。

主要內容如下: -Chrome和IE中的動畫效果非常差(在服務器上,在測試服務器上一切都完美無瑕)。 -Ordering在Chrome和IE中無法正常工作(在確認您的表單之後,您應該可以獲得付款) - 實時服務器上的Chrome和IE中的字體發生了奇怪的變化。

我很感謝你們的幫助,謝謝!

編輯:

Line 1, Column 2: Element head is missing a required instance of child element title. 

Line 2, Column 15: Stray doctype. 
<!DOCTYPE html> 

Line 4, Column 43: Stray end tag html. 
<html xmlns="http://www.w3.org/1999/xhtml"> 

我想這些都是非常重要的。有任何想法如何解決這些問題?

對不起,如果我給你可怕的解釋,但我想也許你知道這樣一個愚蠢的錯誤的典型解決方案。謝謝。

+1

老實說,你認爲用你給的描述可以解決你的問題嗎? – j08691

+1

@ j08691:至少我們會建議在代碼上運行HTML驗證程序,並在所有瀏覽器中檢查錯誤控制檯,這可能是他或她尚未擁有的信息。 – sarnold

+0

*微笑*好吧,如果您使用開箱即用的動畫,它應該依靠jquery crossbrowser兼容性 – mschr

回答

2

既然你已經不是我們表現出任何HTML到目前爲止,我只是猜測,但錯誤信息在這裏:

Line 1, Column 2: Element head is missing a required instance of child element title. 

Line 2, Column 15: Stray doctype. 
<!DOCTYPE html> 

Line 4, Column 43: Stray end tag html. 
<html xmlns="http://www.w3.org/1999/xhtml"> 

強烈建議您在HTML輸出看起來是這樣的:

<head> 
       <!DOCTYPE html> 

              <html xmlns="http://www.w3.org/1999/xhtml"> 

如果你想HTML 5,我建議重新寫你的第幾行看起來更像是這樣的:

<!DOCTYPE html> 
<html> 
<head> 
<title>...</title> 
... 

請參閱the w3.org technical report for more options

相關問題