파일 올리기 할 때 이미지만 받는다던지, 엑셀만 받는다던지...
확장자를 지정해서 미리 차단할 수 있음
<p>Show .xls, .xlsx, .csv files...</p>
<input type="file" accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" ID="fileSelect" runat="server" />
<p>Only show Excel (.xlsx) files...</p>
<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ID="fileSelect" runat="server" />
<p>Only show Excel (.xls) files...</p>
<input type="file" accept="application/vnd.ms-excel" ID="fileSelect" runat="server" />
<p>Only show image files...</p>
<input type="file" accept="image/*" ID="fileSelect" runat="server" />
<p>Only show text files...</p>
<input type="file" accept="text/plain" ID="fileSelect" runat="server" />
<p>Only show html files...</p>
<input type="file" accept="text/html" ID="fileSelect" runat="server" />
<p>Only show video files...</p>
<input type="file" accept="video/*" ID="fileSelect" runat="server" />
<p>Only show audio files...</p>
<input type="file" accept="audio/*" ID="fileSelect" runat="server" />
<p>Only show .WAV files...</p>
<input type="file" accept=".wav" ID="fileSelect" runat="server" />
<p>Only show .PDF files...</p>
<input type="file" accept=".pdf" ID="fileSelect" runat="server" />
'웹 코딩 > HTML + CSS' 카테고리의 다른 글
CSS 로 내용 넣기 (+내용 선택 안되게 만들기) (1) | 2020.09.01 |
---|---|
움직이는 햄버거 메뉴 + 클릭하면 펼치기 (1) | 2020.08.14 |
라디오 radio / 체크박스 checkbox - input 꾸미기 (0) | 2020.08.06 |
CSS - 뚜껑 열리는 링크 (메뉴) (0) | 2020.08.05 |
CSS - rotate 좌우/상하 뒤집기 (3D) (0) | 2020.08.04 |
댓글