HTML 注释说明

发布于 2024-12-08 10:37:08 字数 58 浏览 0 评论 0原文

我可以在 html 中使用 /* */ 注释标签吗?

如果不是,为什么因为它们很常见?

Can I use /* */ comment tags in html .

If not why because they are common for comments ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

触ぅ动初心 2024-12-15 10:37:08

不,你不能。您可以使用

至于问题的第二部分,我无法真正帮助您:)

编辑 - 刚刚意识到/* */ 根本不是标签,这就是为什么你不能使用它们的原因,

No you cannot. You can use <!-- -->

As to the second part of the question, I can't really help you there :)

EDIT - Just realized that /* */ wouldn't be tags at all, which would make sense as to why you can't use them,

云裳 2024-12-15 10:37:08

不,你不能,因为规范是这么说的< /a>:

HTML 注释具有以下语法:

 <!--这个也是,
    占用不止一行 -->

标记声明 open 之间不允许有空格
分隔符(“”)。一个常见的错误是包含
注释中的连字符(“---”)字符串。作者应该避免
在注释中放置两个或多个相邻的连字符。

评论之间出现的信息没有特殊含义
(例如,字符引用不会被如此解释)。

请注意,评论是标记。

最后一行告诉你为什么不能使用 /* */ - 因为 HTML 注释也是标记,就像任何其他标签一样,而那些“通用注释”不会是标签。

No, you can't, because the specification says so:

HTML comments have the following syntax:

<!-- this is a comment --> <!-- and so is this one,
    which occupies more than one line -->

White space is not permitted between the markup declaration open
delimiter(""). A common error is to include a
string of hyphens ("---") within a comment. Authors should avoid
putting two or more adjacent hyphens inside comments.

Information that appears between comments has no special meaning
(e.g., character references are not interpreted as such).

Note that comments are markup.

That last line tells you why you can't use /* */ - because HTML comments are markup too, just like any other tag, and those "universal comments" would not be tags.

嗳卜坏 2024-12-15 10:37:08

您需要在 HTMl 中使用:

<!-- A Comment -->

据我所知,

。 /*

*/

不是通用的,尽管它对于块注释很常见

You need to use:

<!-- A Comment -->

in HTMl as far as I'm aware.

/*

*/

is not universal, although it is common for block comments

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文