【转】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/*" >

猜你喜欢

转载自www.cnblogs.com/mandongpiaoxue/p/11839006.html