5

我很好奇是否有使用image/*forinputaccept属性接受的有效图像类型(本质上是扩展名)列表。例子:

<input type="file" accept="image/*">

哪些扩展对此有效?同样,对于其他两个audio/*video/*。谢谢!

4

1 回答 1

11

这是允许accept属性使用不同文件类型的方法。

<input type="file" accept="image/jpeg,image/gif,image/png" />

同样,您也可以允许音频和视频文件。

按照这个链接:http ://en.wikipedia.org/wiki/MIME_type

您可以检查允许的文件类型。

于 2013-04-16T07:55:10.957 回答