0
在解決此問題時遇到了一些麻煩。如果第二個和第三個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);
}
});
具體的人是的,我是智障者並將false設置爲禁用而不是true。 – ediblecode