Example
HTML Comments:
<!--这是一段注释。注释不会在浏览器中显示。--> <p>这是一段普通的段落。</p>
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>
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!