내 코드는 다음과 같습니다.
$("#product1 :checkbox").click(function(){
$(this)
.closest('tr') // Find the parent row.
.find(":input[type='text']") // Find text elements in that row.
.attr('disabled',false).toggleClass('disabled') // Enable them.
.end() // Go back to the row.
.siblings() // Get its siblings
.find(":input[type='text']") // Find text elements in those rows.
.attr('disabled',true).removeClass('disabled'); // Disable them.
});
어떻게 전환 .attr('disabled',false);
합니까?
Google에서 찾을 수없는 것 같습니다.
$("input").get(0).disabled = isFalse;
// jsfiddle.net/uAfhj