Html+CSS input type=file 文件类型限制属性 accept (HTML 5)

网页上添加一个input file HTML控件:

1
<input id="File1" type="file" />

  默认是这样的,所有文件类型都会显示出来,如果想限制它只显示我们设定的文件类型呢,比如“word“,”excel“,”pdf“文件 

  解决办法是可以给它添加一个accept属性,比如:

  1. <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

 

 

 

 

 
posted @ 2017-02-23 16:14  南夏啊南夏  阅读(1279)  评论(0编辑  收藏  举报