Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- attr
- mysql
- element추가
- ucfirst
- accept
- 문자열포함여부
- disabled
- strpos
- php
- 시간계산
- HTML
- date
- Selector
- File
- 쿠키
- 이전주소
- date포맷
- Javascript
- Meta Tag
- SubString
- 세션사용법
- strtotime
- JQuery
- 웹프로그래밍
- indexOf
- CSS
- mb_strimwidth
- 세션
- input
- parent of iframe
Archives
- Today
- Total
Heojju
[HTML] input file accept 본문
Valid Accept Types
Type | Use |
CSV File (.csv) |
<input type="file" accept=".csv" /> |
Excel Files 97-2003 (.xls) |
<input type="file" accept="application/vnd.ms-excel" /> |
Excel Files 2007+ (./xlsx) |
<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" /> |
Text Files (.txt) |
<input type="file" accept="text/plain" /> |
Image Files (.png, jpg, etc) |
<input type="file" accept="image/*" /> |
HTML Files (.htm, .html) |
<input type="file" accept="text/html" /> |
Video Files (.avi, .mpg, .mpeg, .mp4) |
<input type="file" accept="video/*" /> |
Audio Files (.mp3, .wav, etc) |
<input type="file" accept="audio/*" /> |
PDF Files (.pdf) |
<input type="file" accept=".pdf" /> |
'웹개발 > HTML' 카테고리의 다른 글
[HTML] details 태그 - 숨겨져있는 추가적 설명 (0) | 2017.10.24 |
---|---|
[HTML] input type='file' accept 속성 (0) | 2017.09.29 |
[HTML] input 속성 readonly / disabled / 차이 (0) | 2017.08.18 |
[HTML] contentEditable (0) | 2017.06.08 |
[HTML] <a> 태그 팝업창 띄우기 / window.open() (0) | 2016.12.14 |