如何输入type = file应该只接受.xlsx和filename包含substring

时间:2016-03-02 07:08:58

标签: html

enter image description here

我想将.xlsx文件上传到我的系统,条件是文件名包含指定的字符串。

例如:我想上传名称中包含“Paper”的文件,因此文件浏览器不应显示名称中不包含“Paper”的文件。

对于我在这篇文章中附上的照片中的示例,不应显示“Order#...”文件。

我该怎么办?有可能实现这个想法吗? 感谢。

2 个答案:

答案 0 :(得分:2)

您可以使用accept attribute
试试这个代码

<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />

Read more here

答案 1 :(得分:0)

您可以使用accept属性。一些较旧的浏览器不支持它,但我认为它不是一个问题