input type file 限制上传图片和视频。限制上传的类型,多文件上传等 电脑版发表于:2024/4/22 16:04 #### 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"> ```