<input type='file'> accept属性

来源:互联网 发布:linux 单网卡 nat 编辑:程序博客网 时间:2024/06/04 17:50
input标签是在前台开发中经常使用的,总结下其accept属性,即允许上传的文件类型。
input标签内置了很多允许上传的文件类型,只需要对应配置即可。
<input type="file" accept="application/msword" >
accept列表
1.accept="application/msexcel"
2.accept="application/msword"
3.accept="application/pdf"
4.accept="application/poscript"
5.accept="application/rtf"
6.accept="application/x-zip-compressed"
7.accept="audio/basic"
8.accept="audio/x-aiff"
9.accept="audio/x-mpeg"
10.accept="audio/x-pn/realaudio"
11.accept="audio/x-waw"
12.accept="image/gif"
13.accept="image/jpeg"
14.accept="image/tiff"
15.accept="image/x-ms-bmp"
16.accept="image/x-photo-cd"
17.accept="image/x-png"
18.accept="image/x-portablebitmap"
19.accept="image/x-portable-greymap"
20.accept="image/x-portable-pixmap"
21.accept="image/x-rgb"
22.accept="text/html"
23.accept="text/plain"
24.accept="video/quicktime"
25.accept="video/x-mpeg2"
26.accept="video/x-msvideo"
=======================================================
由于不同浏览器的兼容问题,可能对应不同浏览器无法使用,经测试,在chrome下测试通过。后续其他的浏览器也会去适配(IE待定)
若上传的文件中的选择有多个,可以在accept中进行添加。
例:
[html] view plain copy
在CODE上查看代码片派生到我的代码片
  1. <input type="file" name="pic" id="pic" accept="image/gif, image/jpeg" />  
同样,也可以使用通配符进行匹配
例:
[html] view plain copy
在CODE上查看代码片派生到我的代码片
  1. <input type="file" name="pic" id="pic" accept="image/*" />  
当然,这里面的文件无法包括全部,若需要对其他文件进行控制,则建议自行进行校验控制。
0 0
原创粉丝点击