Html+CSS input type=file 文件类型限制属性 accept (HTML 5)
网页上添加一个input file HTML控件:
1
|
< input id="File1" type="file" /> |
默认是这样的,所有文件类型都会显示出来,如果想限制它只显示我们设定的文件类型呢,比如“word“,”excel“,”pdf“文件
解决办法是可以给它添加一个accept属性,比如:
- <input type="file" id="userImage" name="userImage" accept="image/x-png,image/gif,image/jpeg,image/bmp"/>
转载自:http://blog.csdn.net/u010003835/article/details/51025087