Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

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

了解更多

Firefox 12.00 won't show http://lisa.sunder.net/!

  • 5 回覆
  • 1 有這個問題
  • 2 次檢視
  • 最近回覆由 cor-el

more options

I can't view http://lisa.sunder.net/ using Firefox 12.00. I can reproduce the problem in Google Chrome and Safari for Windows so far. I don't have the problem with Internet Explorer 9 though, which is annoying because I HATE INTERNET EXPLORER!

I can't view http://lisa.sunder.net/ using Firefox 12.00. I can reproduce the problem in Google Chrome and Safari for Windows so far. I don't have the problem with Internet Explorer 9 though, which is annoying because I HATE INTERNET EXPLORER!

所有回覆 (5)

more options

Unfortunately, there is a strange comment tag in that page which hides most of the content. If you right-click the page and choose View Page Source, you can see where the tag opens just below the < table > tag, but then it isn't properly closed with --> before the rest of the HTML code. If you have any influence with the site's author, you could mention it. Unfortunately, I am not aware of any easy way to make Firefox treat the page differently.

more options

I'll try to get in touch. The only problem is that the page hasn't been updated sense 2008...

more options

As a short-term "hack" to view the content of the pages, you could do this:

Press Ctrl+Shift+k to open the Web Console, a panel that slides down above the page.

Copy the following (it's really all one line), paste it next to the caret (>) and press Enter to run it.


document.body.innerHTML = document.body.innerHTML.replace("!---","");

You can close the web console (Ctrl+Shift+k), or leave it open. Unfortunately, this little script command needs to be applied to each page that has the malformed comment tag.

more options

Well, I found that using Firebug I was able to easily add the -- to the comment tag. I know a small amount of HTML, but not too much.

more options

You can open the Web Console (Web Developer > Web Console;Shift+Ctrl+K) and paste this code in the command line and press the Enter key to remove that bad comment tag and make the page display.

document.body.innerHTML=document.body.innerHTML.replace(/<[!][-][-][-] Start of Entries >/,'');

由 cor-el 於 修改