html insert comment tag in the source code

黄舟
Release: 2017-11-04 09:28:55
Original
2978 people have browsed it

Example

HTML Comments:

<!--这是一段注释。注释不会在浏览器中显示。-->
<p>这是一段普通的段落。</p>
Copy after login

Browser support


IE

Firefox

Chrome

Safari

Opera


Comment tags are supported in all browsers.

Definition and Usage

The comment tag is used to insert comments in the source code. Comments will not be displayed in the browser.

You can use comments to explain your code, which will help you edit the code at a later time. Especially useful when you write a lot of code.

It is also a good practice to use comment tags to hide scripts that are not supported by the browser (so that the script is not displayed as plain text):

<script type="text/javascript">
<!--
function displayMsg()
{
alert("Hello World!")
}
//-->
</script>
Copy after login

Comment: two lines at the end of the comment line The slash (//) is the JavaScript comment symbol. This prevents JavaScript from executing the --> tag.

Differences between HTML 4.01 and HTML5

None.

StandardsAttributes

Comment tags do not support any standard attributes.

For more information about HTML standard attributes, visit Standard Attributes.

EventsProperties

Annotation tags do not support any event properties.

Tag

The comment tag is used to insert comments in the source document. Comments are ignored by the browser. You can use comments to explain your code, which will help you edit the code at a later time.


The above is the detailed content of html insert comment tag in the source code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template