티스토리 뷰

$('li').each(function(e){
    $(this).find('input[type=checkbox]').on('click',function(e){
        if($(this).is(':checked') == true){
            $(this).parents('li').addClass('on');
        }else{
            $(this).parents('li').removeClass('on');
        }
    });
});

 

 

'기타' 선택 시 input[type="text"] 활성화

$('input[type="checkbox"]').change(function(){
    if($('input[name="etc"]').is(':checked') == true){
        $('input[type="text"]').removeAttr('disabled');
    }else{
        $('input[type="text"]').attr('disabled', true);
        $('input[type="text"]').val('');
    }
});
공지사항