我们如何在HTML代码中添加评论?

WBOY
发布: 2023-08-19 19:29:29
转载
1608 人浏览过

我们如何在HTML代码中添加评论?

In this article we are going to learn about how do we add a comment in HTML code. Let’s dive into the article for getting better understanding on adding comment in HTML code.

要在HTML代码中添加注释,请使用注释标签(!— Comment—>)。这是一种良好的编码实践,使编码人员和读者都能从理解代码的帮助中受益。理解复杂代码的步骤非常有帮助。在调试代码时,注释标签非常有用。

  • It is a straightforward bit of code that web browsers wipe off (ignore), meaning they do not appear.

  • Understanding the purpose of a piece of code, particularly in complex source code, is helpful to both coders and readers.

Syntax

Following is the syntax for comment in HTML


登录后复制

Let’s consider the following examples to get clear idea on how do we add a comment in HTML code.

单行注释

Single line comment is given inside the () tag.

Let’s look into the following example

Example

的中文翻译为:

示例

In the following examples we are using the single line comment.




   
   

TutorialsPoint

The Best E-Way Learning

登录后复制

当脚本执行时,它将生成一个输出,在网页上显示没有注释的文本。

Multi-line Comment

The syntax (!- ->) can be used to specify several lines. In essence, it is the same as the syntax for single-line comments; the only difference is that the first half of the comment ("->") is appended when the intended comment line ends.

Example

的中文翻译为:

示例

Considering the following example, where we are using the multi line comment tag.



   
      
      

MSD

The Best Finisher

登录后复制

运行上述脚本后,它将在网页上生成包含脚本中使用的文本的输出。

使用标签

An HTML "comment" tag once existed, but none of the current browsers support it.

Example

的中文翻译为:

示例

查看下面的示例,我们正在使用标签。



   
      Heading tag
      

DUCATI

Paragraph tag

The Fastest Bike

登录后复制

When the script gets executed, it will generate an output displaying the text used in the code on the webpage along with the comments used by tag as modern browsers won’t support it.

以上是我们如何在HTML代码中添加评论?的详细内容。更多信息请关注PHP中文网其他相关文章!

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