📅  最后修改于: 2022-03-11 14:59:30.288000             🧑  作者: Mango
function calculate() {
$('#payments').find('.checkBoxP').each(function () {
if (this.checked) {
alert('its on');
} else {
alert('nope');
}
});
}