为什么accept属性不会过滤chrome和firefox中此示例中指定的类型?

时间:2017-09-14 08:06:43

标签: html5 input mime-types

我有一个网页表单,其中我有一个带有accept属性的文件输入,但filebrowser没有按照指定的mimetype过滤文件。

我在Windows 10上的chrome和firefox浏览器上测试过。

在这里您可以看到代码示例:



<html>
<body>

<form>
  <!-- Pdf works fine -->
  <input type="file" name="pdf" accept="application/pdf"> 
  <!-- Zip doen't work -->
  <input type="file" name="zip" accept="application/zip">

  <input type="submit">
</form>

</body>
</html>
&#13;
&#13;
&#13;

0 个答案:

没有答案