html评论的标签是什么?

时间:2017-04-29 05:16:51

标签: html

在html中插入评论的标签是什么?



<!--comment--> or <!comment!>
&#13;
&#13;
&#13; 以上两个标签都执行注释的任务(它不会在输出中执行)但是在html中插入注释的正确标记是什么?

6 个答案:

答案 0 :(得分:1)

普遍使用<!-- comment -->

浏览器会将<!comment!>标记转换为<!--comment!-->,但除此之外,我不知道<!comment!>标记的特殊之处。

您还可以使用<comment>标记进行评论。

答案 1 :(得分:0)

<!-- Comments Added Here -->

您可以使用上述格式在HTML页面中添加注释

答案 2 :(得分:0)

<!-- comment --> 

是正确的语法。您可以查看W3Schools文档以供参考 W3C Comments

答案 3 :(得分:0)

&#34;!&#34;语法保留用于声明,例如&#34;&lt;!DOCTYPE ...&#34;而不是评论。

请参阅:What is the correct way to declare an HTML5 Doctype.

答案 4 :(得分:0)

您可以使用:&lt;! - Comment - &gt;

答案 5 :(得分:0)

就像这样<!-- comment -->

查看this link for further explanation