我在一个页面中有两个复选框。如果单击一个选中所有复选框,则另一个复选框也会启用选中的框。
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>
有谁能够帮我