📅  最后修改于: 2022-03-11 15:04:11.253000             🧑  作者: Mango
$('#select_all').change(function() {
var checkboxes = $(this).closest('form').find(':checkbox');
checkboxes.prop('checked', $(this).is(':checked'));
});