php에서 Notice: No file uploaded in Unknown on line 0 에러 등등

파일첨부를 하지 않았을 때 처리 하는 방법

 

submit 하기전에 

 

        $('.btn_file').each(function (index, value){
            if($(this).val() == ''){
                $(this).attr("disabled",true);
            }
        });

선택된 파일이없으면 disabled 처리해준다

+ Recent posts