我在网上搜索并找不到办法。到目前为止,我已经尝试过:
<%= check_box_tag "course[location_ids][]", location.id, class: 'checkbox-inline'%>
这将输出:
input type: "checkbox" name="course[location_ids][] id="course_location_ids_" value="1" checked="checked"
出于某种原因,它会进行检查输入。
<%= check_box_tag "course[location_ids][]", location.id, :class => 'checkbox-inline'%>
与第一个相同
如何在check_box_tag
中添加一个类答案 0 :(得分:9)
您没有使用正确的格式
check_box_tag(name, value = "1", checked = false, options = {})
将标记更改为以下内容:
<%= check_box_tag "course[location_ids][]", location.id, false, class: 'checkbox-inline'%>
注意:第3个选项是已检查的值,您需要根据需要进行更改