티스토리 뷰

$('select').change(function(){
    var selectValue = $(this).find('option:selected').val();
    if(selectValue == 'etc'){
        $(this).next('input').removeAttr('disabled');
    }else{
        $(this).next('input').attr('disabled', true);
        $(this).next('input').val('');
    }
})
공지사항