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

WBOY
发布: 2023-08-31 15:05:06
转载
1435 人浏览过

如何在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

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中创建隐藏的评论?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!