排名
6
文章
199
粉丝
4
评论
3
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:
50010702506256


欢迎加群交流技术

input type file 限制上传图片和视频
<input type="file" id="fileInput" multiple accept="image/*,video/*" />
各种限制上传的类型
1、<input text="file" accept=".csv" /> cvs格式
2、<input text="file" accept="application/vnd.ms-excel"/> 上传.xls格式
3、<input text="fiel" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"/> 上传.xslx格式
4、<input type="file" accept="text/plain" /> 上传.png/.jpg/etc格式
5、<input type="file" accept="image/*" /> 上传图片格式
6、<input type="file" accept="text/html" /> 上传.htm,.html格式
7、<input type="file" accept="video/*" /> 上传video(.avi, .mpg, .mpeg, .mp4)格式
8、<input type="file" accept="audio/*" /> 上传audio(.mp3, .wav, etc)格式
9、<input type="file" accept=".pdf" /> 上传.pdf格式
10、<input type="file" accept=".zip" /> 上传.zip格式
11、<input type="file" accept=".zip" multiple /> 上传多个(multiple)
12、<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel">
欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)
评价