根据https://www.w3.org/wiki/HTML/Elements/input/file
的规范“accept”属性是一系列MIME类型。
在这种情况下(即文件不是来自服务器),是否可以为某个文件扩展名或二进制文件偷看设置自定义MIME类型(例如,读取标题的某些过程)?
答案 0 :(得分:0)
是的,您可以设置自定义MIME类型。
The Living Standard specification states“可以指定accept属性以向用户代理提供将接受哪些文件类型的提示。”
要使用此功能,请使用以下<input type="file" name="example" accept=
"your-custom-extension-1, your-custom-extension-2, your-custom-extension-3">
此外,请阅读以下关于accept attribute的声明:“如果type属性的值为file,则此属性将指示服务器接受的文件类型,否则将被忽略”