반응형
<!-- Match all image files (image/*) -->
<input type="file" accept="image/*">
<!-- Match all video files (video/*) -->
<input type="file" accept="video/*">
<!-- Match all audio files (audio/*) -->
<input type="file" accept="audio/*">
<!-- Match all image files (image/*) and files with the extension ".someext" -->
<input type="file" accept=".someext,image/*">
<!-- See note below -->
<!-- Match all image files (image/*) and video files (video/*) -->
<input type="file" accept="image/*,video/*">
<!-- See note below -->
728x90
반응형
'웹 개발' 카테고리의 다른 글
[eclipse] WAS 변경 시 주의사항 (0) | 2019.08.23 |
---|---|
iframe, frame 사용시 페이지 이동할때마다 깜빡임 현상 (메인 배경이 흰색이 아닌데 흰색으로 깜빡임 현상) (0) | 2019.08.23 |
javascript object size (0) | 2019.08.17 |
javascript 레퍼런스 참조 없는 배열 복사(deep copy) (0) | 2019.08.17 |
html/javascript - enter키를 누르면 click event가 발생하는 문제 (0) | 2019.08.17 |