html accept属性在不同操作系统上的工作方式不同

时间:2017-06-14 15:02:59

标签: html windows macos electron

文件类型输入的accept属性对每个操作系统的工作方式是否有所不同?

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

在Mac计算机上,此限制使得只能选择视频类型文件。但在Windows上它仍然允许您选择任何东西。

每个操作系统是否必须使用不同的语法?或者我在寻找什么?

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

可能存在浏览器兼容性问题,请确保您使用的浏览器是最新的。

另一种方法是说明您愿意接受的文件类型。

一些可能有用的链接:

Safari <input type="file" accept="video/*"> ignores mp4 files

How to make <input type="file"/> accept only these types?