HTML
<input checked="checked" class="list_completed_checkbox" id="list_item_completed" name="list_item[completed]" type="checkbox" value="1">
的jQuery:
$('.list_completed_checkbox').change(function() {
$(this).attr('disabled', 'disabled');
});
當您選中或取消選中該複選框,爲什麼不是禁用ATTR被應用於輸入?
謝謝
工作正常,我(在Chrome,IE6-9和Firefox 4):http://jsfiddle.net/Z9uyD/ –