728x90
반응형
function needStock() {
$('.needStock').each(function () {
if ($(this).prop('checked')) {
$(this).parent('td').next('td').children('.noti_qty').prop('disabled',false)
}else{
$(this).parent('td').next('td').children('.noti_qty').prop('disabled',true)
}
})
}
$(function () {
needStock();
})
$('.needStock').on('click', function () {
needStock();
})
728x90
반응형