首页 > Web开发 > 详细

限制input type=“file“ 文件上传类型

时间:2021-04-19 14:43:06      阅读:12      评论:0      收藏:0      [点我收藏+]

cvs格式

<input text="file" accept=".csv" />

.xls格式

<input text="file"  accept="application/vnd.ms-excel"/>

 .xslx格式

<input text="fiel" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"/>

.txt格式

<input type="file" accept="text/plain" />

所有图片格式

<input type="file" accept="image/*" />

.htm,.html格式

<inputtype="file" accept="text/html" />

video(.avi, .mpg, .mpeg, .mp4)格式

<input type="file" accept="video/*" />

audio(.mp3, .wav, etc)格式

<input type="file" accept="audio/*" />

.pdf格式

<input type="file" accept=".pdf" />

.zip格式

<input type="file" accept=".zip" />

上传多个(multiple)

<input type="file" accept=".zip" multiple />

上传文件夹(webkitdirectory) (注意 : 上传文件夹 只能上传文件夹,不可以和文件同时上传)

<input type="file" webkitdirectory />

 

限制input type=“file“ 文件上传类型

原文:https://www.cnblogs.com/meiyanstar/p/14676408.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!