21

有没有办法在默认文件选择器对话框中只显示 .xxx 文件。xxx 可能是未知的文件类型,例如 abc、efg 等。

我使用的是 html5,所以它可能对这类东西有新的支持。

谢谢!

4

2 回答 2

46

输入元素的HTML 5accept属性就是file为此目的。例如:

<input type="file" accept=".doc,.docx,.xml,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document">
于 2012-12-12T08:54:08.763 回答
8

对于其他到达这里的人,这些是一些非常方便的预定义集:

<input type="file" accept="image/*"/>
<input type="file" accept="video/*"/>
<input type="file" accept="audio/*"/>
于 2017-09-22T12:29:21.570 回答