首页 > Web开发 > 详细

【转】input file标签限制上传文件类型

时间:2019-11-11 23:17:05      阅读:57      评论:0      收藏:0      [点我收藏+]

用 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/*" >

【转】input file标签限制上传文件类型

原文:https://www.cnblogs.com/mandongpiaoxue/p/11839006.html

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