반응형
# input file타입 확장자 제한하기
## 엑셀 파일 ( .xlsx)
- <input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
## 텍스트 파일 ( .txt)
- <input type="file" accept="text/plain" />
## 이미지 파일 ( .png/ .jpg/ etc)
- <input type="file" accept="image/*" />
## HTML 파일 ( .htm/ .html)
- <input type="file" accept="text/html" />
## 비디오 파일 ( .avi/ .mpg/ .mpeg/ .mp4)
- <input type="file" accept="video/*" />
## 오디오 파일 ( .mp3/ .wav/ etc)
- <input type="file" accept="audio/*" />
## PDF 파일
- <input type="file" accept=".pdf" />
반응형
'프로그래밍 > HTML, CSS, JSP, 서블릿' 카테고리의 다른 글
CSS 들여쓰기, 내어쓰기(text-indent) (0) | 2020.08.20 |
---|---|
CSS 색상표 참고 사이트 (0) | 2020.08.18 |
textarea 설명, textarea 속성 (0) | 2020.08.03 |
lodash 라이브러리 (Debounce) (0) | 2020.07.30 |
스크롤 바 하단으로 위치하기(제이쿼리) (0) | 2020.07.29 |