创建评论
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 的工具兼容,注释的正文不应包含两个破折号 --
。