码迷,mamicode.com
首页 > Web开发 > 详细

input accept属性限制文件上传格式

时间:2018-09-21 15:22:48      阅读:532      评论:0      收藏:0      [点我收藏+]

标签:pre   文件格式   jpg   off   bsp   audio   bubuko   input   限制   

上传文件的类型;具体做法如下所示:

注意:accept属性可以限制上传格式,其有兼容性如下

技术分享图片

 

《1》上传.csv格式的

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

《2》上传.xls格式

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

《3》上传.xslx格式

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

《4》上传.png/.jpg/etc格式

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

《5》上传图片格式

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

《6》上传.htm,.html格式

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

《7》上传video(.avi, .mpg, .mpeg, .mp4)格式

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

《8》上传audio(.mp3, .wav, etc)格式

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

《9》上传.pdf格式

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

《10》如果限制两种文件格式,同时限制

<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel">

注意:以逗号分隔开

input accept属性限制文件上传格式

标签:pre   文件格式   jpg   off   bsp   audio   bubuko   input   限制   

原文地址:https://www.cnblogs.com/mmzuo-798/p/9685994.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!