建立評論

HTML 註釋可用於向你自己或其他開發人員提供有關程式碼中特定點的註釋。它們可以用 <!-- 啟動並以 --> 結束,如下所示:

<!-- I'm an HTML comment! -->

它們可以內嵌在其他內容中:

<h1>This part will be displayed <!-- while this will not be displayed -->.</h1>

它們還可以跨越多行以提供更多資訊:

<!-- This is a multiline HTML comment.
  Whatever is in here will not be rendered by the browser.
  You can "comment out" entire sections of HTML code.
-->

但是,它們不能出現在另一個 HTML 標記中,如下所示:

<h1 <!-- testAttribute="something" -->>This will not work</h1>

這會產生無效的 HTML,因為整個 <h1 <!-- testAttribute="something" --> 塊將被視為單個開始標記 h1,其中包含一些其他無效資訊,後跟一個什麼也不做的 > 結束括號。

為了與嘗試將 HTML 解析為 XML 或 SGML 的工具相容,註釋的正文不應包含兩個破折號 --