我有用于选择特定班级学生的复选框。但未选择的学生 ID 没有通过复选框。请帮助我。而且我还在下面包含了编码。
在视图中
<%= label_tag :students %>
<button type="button" id="check_all">
Check / Uncheck All
</button>
<table id = "mark">
<tr>
<td>
<table >
<thead>
<tr>
<td><strong>Students List</strong></td>
</tr>
</thead>
<tbody>
<% @student.each do |i| %>
<tr>
<td><%= check_box_tag :student, i.id %><%= i.first_name.capitalize %></td>
</tr>
<% end %>
</tbody>
</table>
<table>
<tr>
<td>
</tr>
</td>
</table>
</td>
</tr>
</table>
js文件
$('#check_all').on("click", function(){ $('input[type="checkbox"]').click(); });