Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个<input type="file" accept=".png,.jpg" />元素。带属性接受。
<input type="file" accept=".png,.jpg" />
但它接受 Firefox 和 safari 中的所有文件。它在 chrome 和 ie 中运行良好。我如何为所有浏览器编写代码
尝试这个:
<label>Select file: <input type="file" name="imagefile" accept="image/jpeg, image/png"> </label>
更多信息在这里: http ://www.w3.org/wiki/HTML/Elements/input/file
您可以将其用于所有浏览器
<input type="file" name="pic" accept="image/*">