////
Search
Duplicate
📁

[NextJS/React] 파일 업로드 리셋 시키기

생성일
2022/09/20 01:14
태그
최종 편집 일시
2022/11/15 15:02
<input name='Upload' multiple onChange={changeValue.bind(this)} type="file" id="file"/> function changeValue(event:any){ if(event.target.files.length>=6){ alert("파일은 5개까지 선택할 수 있습니다") event.target.value=''; } console.log(event.target.files.length); }
JavaScript
복사
Input 태그의 multiple 옵션으로 여러 파일을 업로드 할 수 있게 하고 정해진 파일 갯수가 초과되면 파일을 최기화 시키고 alert 메시지 출력.

같은 태그의 다른 글 보기

Search
프론트 엔드