📅  最后修改于: 2022-03-11 15:00:35.235000             🧑  作者: Mango
$("#agree").change(function() {
if ($(this).is(':checked')) {
$('#button').prop('disabled', false);
} else {
$('#button').prop('disabled', true);
}
});