前端 HTML 注释

时间:2020-12-26 06:49:24

单行注释

<!--注释内容-->
<!DOCTYPE html>

<!-- 页面根节点开始-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
</head>
<body>
<!-- <a href="http://www.baidu.com">百度</a> -->
</body> </html>
<!-- 页面根节点结束-->

注意: 注释中可以直接使用回车换行。

并且我们习惯用注释的标签把HTML代码包裹起来。如:

<!-- xx部分 开始 -->
这里放你xx部分的HTML代码
<!-- xx部分 结束 -->

多行注释

<!-- asdas

 aasd

-->
asdas

绿色都是注释部分

<!DOCTYPE html>
<html lang="en">
<head>
<!--
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
-->
<title>Title</title>
</head>
<body>
<a href="http://www.baidu.com">百度</a>
</body>
</html>

HTML注释的注意事项:

  1. HTML注释不支持嵌套。
  2. HTML注释不能写在HTML标签中。