0
我不知道爲什麼,但由於某種原因,當我點擊一個td,其複選框已經被選中時,它不會取消選擇它。取消選擇一個複選框
$('table tr').click(function() {
checkBox = $(this).children('td').children('input[type=checkbox]');
if(checkBox.attr('checked'))
checkBox.attr('checked', '');
else
checkBox.attr('checked', 'checked');
});
感謝u爲響應。 –