input=file accept 类型

<p>显示 .xls, .xlsx, .csv 文件...</p>
<input type="file" accept=".csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel" ID="fileSelect" runat="server" />  




<p>只显示  Excel (.xlsx) 文件...</p>
<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" ID="fileSelect" runat="server" />  


<p>只显示 Excel (.xls) 文件...</p>
<input type="file" accept="application/vnd.ms-excel" ID="fileSelect" runat="server" />  




<p>只显示图片.</p>
<input type="file" accept="image/*" ID="fileSelect" runat="server" />  




<p>只显示文本文件...</p>
<input type="file" accept="text/plain" ID="fileSelect" runat="server" />  


<p>只显示html文件.</p>
<input type="file" accept="text/html" ID="fileSelect" runat="server" />  


<p>只显示 video 文件..</p>
<input type="file" accept="video/*" ID="fileSelect" runat="server" />  


<p>只显示 audio 文件...</p>
<input type="file" accept="audio/*" ID="fileSelect" runat="server" />  


<p>只显示 .WAV 文件...</p>
<input type="file" accept=".wav" ID="fileSelect" runat="server" />  


<p>只显示 .PDF 文件...</p>
<input type="file" accept=".pdf" ID="fileSelect" runat="server" />  

猜你喜欢

转载自my.oschina.net/swmhxhs/blog/1813622