搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Code that displayed in previous versions does not display in Firefox 4

  • 2 回覆
  • 2 有這個問題
  • 4 次檢視
  • 最近回覆由 dsc3507

more options

The following code, downloaded from a remote site does not display in Firefox 4 but does in all previous versions...

<title>One Wire Temperature Readings <title> </head> <body bgcolor="FFFFFF"> <center> <h1>One Wire Temperature Readings Cape May, NJ</h1> <p> <hr> <pre> 03/24/11, 11:30:02, 10E2AAED0108003B, 0, 57.5 03/24/11, 11:30:04, 101297E101080033, 1, 66.4 03/24/11, 11:30:05, 10C59EE101080081, 2, 66.2 03/24/11, 11:30:07, 2624F2CA0000000C, 3, 36 </pre> <p> <hr> </body> </p><p>There were no additional plugins added when upgrading. </p></title>

The following code, downloaded from a remote site does not display in Firefox 4 but does in all previous versions... <html> <head> <title>One Wire Temperature Readings <title> </head> <body bgcolor="FFFFFF"> <center> <h1>One Wire Temperature Readings Cape May, NJ</h1> <p> <hr> <pre> 03/24/11, 11:30:02, 10E2AAED0108003B, 0, 57.5 03/24/11, 11:30:04, 101297E101080033, 1, 66.4 03/24/11, 11:30:05, 10C59EE101080081, 2, 66.2 03/24/11, 11:30:07, 2624F2CA0000000C, 3, 36 </pre> <p> <hr> </body> </html> There were no additional plugins added when upgrading.

所有回覆 (2)

more options

There are some problems with that code. Is this the whole thing?
Or is there more before and after?
A standard html page should have a tag and a tag before the <title> tag. <br> This whole section: </p><p>There were no additional plugins added when upgrading. </p></title> is after the end of the page (the ending tag).
Some older browsers (especially IE) are set up so that they can process broken HTML to some degree. Apparently, some of the problems with this are too bad for Firefox 4 to understand. But, they can be fixed, which is much better in the long run anyway.

If this is your page and this is all there is, just fixing what is missing, you would want something like this:

http://www.scribd.com/doc/51468610/test

Sory, it ate my HTML when I posted it here

If it's not your page, perhaps you could e-mail the page owner and explain to them that they have problems with their HTML code?

由 Raine Dragon 於 修改

more options

Replying to my own question the fix was simple. This code was dynamically generated by code I wrote. The fix was a missing / at the end of the title block. <title> which should be </title>

Correcting only this solved the problem but I will further correct the improper HTML. This error went unnoticed when using prior Firefox versions.

Thanks, Doug