奇怪的 HTML 注释行为
在我的代码中,我有一个带有单选按钮的表单。第一个单选按钮已显示,但第二个(每周重复)未显示?如果我删除评论标记,那么一切都会正常。但为什么会发生这种情况呢?
<!------------>
<%= 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有点符合预期,请参阅规范
Kind of expected, see specification