奇怪的 HTML 注释行为

发布于 2024-09-28 01:17:38 字数 375 浏览 0 评论 0原文

在我的代码中,我有一个带有单选按钮的表单。第一个单选按钮已显示,但第二个(每周重复)未显示?如果我删除评论标记,那么一切都会正常。但为什么会发生这种情况呢?

<!------------>
<%= radio_button_tag 'repeat_daily', 'freq' %>Repeat Every Day<br/>
<!------------>
...some code...
<!----------->
<%= radio_button_tag 'repeat_weekly', 'freq' %>Repeat Every Week<br/>
<!----------->

In my code, I have a form with radio buttons. The first radio button is displayed but the second (Repeat Every Week) is not? If I remove the comment markers then it all works fine. But why is it happening?

<!------------>
<%= radio_button_tag 'repeat_daily', 'freq' %>Repeat Every Day<br/>
<!------------>
...some code...
<!----------->
<%= radio_button_tag 'repeat_weekly', 'freq' %>Repeat Every Week<br/>
<!----------->

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

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

发布评论

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

评论(1

ゞ花落谁相伴 2024-10-05 01:17:38

有点符合预期,请参阅规范

一个常见的错误是在注释中包含一串连字符(“---”)。作者应避免在注释中放置两个或多个相邻的连字符。

Kind of expected, see specification

A common error is to include a string of hyphens ("---") within a comment. Authors should avoid putting two or more adjacent hyphens inside comments.

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