HTML 注释说明
我可以在 html 中使用 /* */ 注释标签吗?
如果不是,为什么因为它们很常见?
Can I use /* */ comment tags in html .
If not why because they are common for comments ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不,你不能。您可以使用
至于问题的第二部分,
我无法真正帮助您:)编辑 - 刚刚意识到/* */ 根本不是标签,这就是为什么你不能使用它们的原因,
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,
不,你不能,因为规范是这么说的< /a>:
最后一行告诉你为什么不能使用 /* */ - 因为 HTML 注释也是标记,就像任何其他标签一样,而那些“通用注释”不会是标签。
No, you can't, because the specification says so:
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.
您需要在 HTMl 中使用:
据我所知,
。 /*
*/
不是通用的,尽管它对于块注释很常见
You need to use:
in HTMl as far as I'm aware.
/*
*/
is not universal, although it is common for block comments