跳至内容

超文本标记语言/注释

来自维基百科,一个开放世界的开放书籍

HTML 提供在页面中插入注释的可能性。要在 HTML 代码中放置注释,以 <!-- 开始,以 --> 结束。一个示例:

    <p>The first paragraph.</p>
    <!-- This comment spans one line, and will not be displayed to the browser. -->
    <p>The second paragraph.</p>
    <!--
       This comment spans multiple lines,
       and will also not be displayed to the browser.
    -->
    <p>The third paragraph.</p>

与办公软件中的注释不同,注释被浏览器完全忽略,因此页面读者不会知道它们的存在。不过,它们可以在网页的源文件中查看。

应避免使用嵌套注释,因为这可能会给许多浏览器带来麻烦。一个示例:

    <p>The second paragraph.</p>
    <!--
      <!--
       Nested comments should better be avoided.
        -->
    -->
    <p>The third paragraph.</p>
华夏公益教科书