Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML <!--...--> 标签


示例

HTML 注释

<!--这是注释。注释不会在浏览器中显示-->

<p>这是一段文字。</p>
自己试一试 »

定义和用法

注释标签用于在源代码中插入注释。注释不会在浏览器中显示。

您可以使用注释来解释代码,这在您以后编辑源代码时会有所帮助。如果您有很多代码,这尤其有用。


浏览器支持

元素
<!--...-->

提示和注意事项

您可以使用注释标签来“隐藏”不支持脚本的浏览器中的脚本(因此它们不会将其显示为纯文本)

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

注意:注释行末的两个斜杠 (//) 是 JavaScript 注释符号。这将阻止 JavaScript 执行 --> 标签。


标准属性

注释标签不支持任何标准属性。

有关标准属性的更多信息。


事件属性

注释标签不支持任何事件属性。

有关事件属性的更多信息。


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.