0

我有一个<input type="file" accept=".png,.jpg" />元素。带属性接受。

但它接受 Firefox 和 safari 中的所有文件。它在 chrome 和 ie 中运行良好。我如何为所有浏览器编写代码

4

2 回答 2

1

尝试这个:

<label>Select file: 
<input type="file" name="imagefile" accept="image/jpeg, image/png">
</label>

更多信息在这里: http ://www.w3.org/wiki/HTML/Elements/input/file

于 2013-09-05T10:22:19.667 回答
0

您可以将其用于所有浏览器

<input type="file" name="pic" accept="image/*">
于 2013-09-05T06:48:54.280 回答