<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