input file上传文件弹出框的默认格式设置

我们使用html的input 标签type="flie"时,如何设置默认可选的文件格式

 "doc_file" type="file" name="files"/>

不加accept属性时,默认是接收所有文件

input file上传文件弹出框的默认格式设置_第1张图片

 

 input file上传文件弹出框的默认格式设置_第2张图片

 

 1)默认只接收图片,只需要设置accept="image/*"

 "doc_file" type="file" name="files"  accept="image/*"  />

查看效果

input file上传文件弹出框的默认格式设置_第3张图片

 

 input file上传文件弹出框的默认格式设置_第4张图片

 

 

2)默认只接收excel文件,要设置成 accept=".xls,.xlsx"

"doc_file" type="file" name="files" accept=".xls,.xlsx" />

input file上传文件弹出框的默认格式设置_第5张图片

 

 input file上传文件弹出框的默认格式设置_第6张图片

 

 同理,要接收doc文档也一样设置下后缀就可以

 

转载于:https://www.cnblogs.com/xielong/p/11550928.html

你可能感兴趣的:(input file上传文件弹出框的默认格式设置)