在弄清楚这一点时遇到了一些麻烦。如果第二个和第三个中的复选框td
都未选中,则禁用第四个中的复选框。
$('#allergies tbody tr').each(function () {
if ($('td:eq(1) input[type="checkbox"]:not(:checked)', $(this)).length > 0
&& $('td:eq(2) input[type="checkbox"]:not(:checked)', $(this)).length > 0) {
$("td:eq(3) input", $(this)).attr('disabled', false);
}
});