1 つのページに 2 つのチェック ボックスがあります。一方のチェック ボックスをすべてオンにすると、もう一方のチェック ボックスもオンになります。
jQuery
$("#box_all").click(function () {
$('td input[type=checkbox]').attr('checked', this.checked);
});
$("#book_all").click(function () {
$('td input[type=checkbox]').attr('checked', this.checked);
});
HTML
<th><%= check_box_tag "box_all" %></th>
<td>
<%= hidden_field_tag 'box_id', sd.box.id %>
<%= check_box_tag "box_dance_ids[]", bd.id %>
</td>
<th><%= check_box_tag "book_all" %></th>
<td ><%= check_box_tag "book_dance[book_ids][]", @book.id %></td>
どんな体でも私を助けることができますか