搜尋 Mozilla 技術支援網站

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

Learn More

Bug in Page source view

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

more options

In Page Source view in 32-bit Firefox 3.6 under Windows, if there is a URL in the source code that is erroneously not closed with a quote, for example:

<a href="http://mozilla.com>The Mozilla' site</a>

(Note absence of quote after .com)

And you reload the source view, it loads the source of the page in the URL instead.

In normal page view, leaving off the quote will cause the link not to be displayed, so it is a common reason to open source view and try to identify the problem.

In Page Source view in 32-bit Firefox 3.6 under Windows, if there is a URL in the source code that is erroneously not closed with a quote, for example: <a href="http://mozilla.com>The Mozilla' site</a> (Note absence of quote after .com) And you reload the source view, it loads the source of the page in the URL instead. In normal page view, leaving off the quote will cause the link not to be displayed, so it is a common reason to open source view and try to identify the problem.

所有回覆 (3)

more options

If there are such serious error in the page's source code then the result will be unpredictable. We can see that it is wrong, but a computer parses data more strictly and may decide to skip everything till the next closing quote (").

more options

Source code view is supposed to display the source code, not interpret it. I don't consider that a satisfactory answer.

more options

You can disable the context highlighting if you find that distracting. In this case it should make noticing that something is wrong more easily though. A link starts with a quote and ends with a quote and everything between the two is considered the link. If the second quote is omitted then it is the choice of the developer on how to deal with it. Either not to interpret the text in between (you may even have forgotten to HTML escape some characters &quote; &lt;) or try to catch up in case you forgot a closing quote. Both can have their disadvantages in case of an error from you.