微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在HTML中创建隐藏的评论?

如何在HTML中创建隐藏的评论?

Comments are used to hide content.

To create hidden comments in HTML, we add <! --- tag and end it with -- >. Whatever comes inside this tag it is hidden. These comments allow us to easily understand the code.

评论可以被视为对自己的注释,也可以让其他人理解代码,同时隐藏HTML代码,使得浏览器不会在网页上显示它。

语法

以下是在HTML中隐藏注释的语法。

<!—The text to be commented -->

Example

中文翻译为:

示例

以下是隐藏HTML中注释的示例程序。

<!DOCTYPE html>
<html>
<body>
   <!-- The text here is a commented and it is hidden on the web page -->
   <p>DLF stands for Delhi Land and Finance</p>
</body>
</html>

Example

中文翻译为:

示例

Following is another example program to hide comments in HTML.

<!DOCTYPE html>
<html>
<body>
   <!-- <ul>
      <li> 1 </li>
      <li> 2 </li>
      <li> 3 </li>
   </ul> -->
   <p>Delhi is the capital of India</p>
</body>
</html>

We use inline comment tag inside the <p> tag. To hide the content of the paragraph.

Example

中文翻译为:

示例

以下是一个隐藏HTML中注释的示例程序,使用内联注释标签

<!DOCTYPE html>
<html>
<body>
   <!-- The text here is a commente and it is hidden on the web page -->
   <p>DLF stands for Delhi Land and Finance<!--FinanceDelhi Land and Finance is one of the largest commercial real estate developer in India.--></p>
</body>
</html>

以上就是如何在HTML中创建隐藏的评论?的详细内容,更多请关注编程之家其它相关文章

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐