input file标签限制上传文件类型、多种特定类型文件上传

用 input 的file类型标签上传文件,有时需要限制上传文件类型,添加accept属性可以实现

<input type="file"  accept="image/png" >
 
或者
 
<input type="file"  accept=".png" >

 

多种类型

<input type="file"  accept="image/png,image/jpg" >
 
或者
 
<input type="file"  accept=".png,.jpg" >

 

所有图片格式

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

 

所有视频格式

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

 

所有xls支持的文件

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

 

posted @ 2019-11-11 22:35  漫冬飄雪  阅读(344)  评论(0编辑  收藏  举报