gpt4 book ai didi

ruby-on-rails - 在 Rails 中关联标签和单选按钮

转载 作者:行者123 更新时间:2023-12-04 00:04:15 25 4
gpt4 key购买 nike

我正在使用 Rails 2.3.8。我的代码:

<%= f.radio_button :status, "draft" %>
<%= f.label :status, "Draft" %>
<%= f.radio_button :status, "published" %>
<%= f.label :status, "Published" %>

输出:
<input id="shop_status_draft" name="shop[status]" type="radio" value="draft" />
<label for="shop_status">Draft</label>
<input checked="checked" id="shop_status_published" name="shop[status]" type="radio" value="published" />
<label for="shop_status">Published</label>

显然是 label没有正确关联我的单选按钮。我想做 label与单选按钮相同 id .我该如何纠正?

谢谢。

最佳答案

试试这个

<%= f.radio_button :status, "draft" %>
<%= f.label :status, "Draft", :value => "draft" %>
<%= f.radio_button :status, "published" %>
<%= f.label :status, "Published", :value => "published" %>

关于ruby-on-rails - 在 Rails 中关联标签和单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4921277/

25 4 0