input에 파일업로드 파일 유형 설정
페이지 정보
본문
<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" />
관련링크
댓글목록
등록된 댓글이 없습니다.