accept 属性指定服务器接受的文件类型(可以通过文件上传提交)。
注意: accept 属性只能与 <input type="file"> 一起使用。
提示: 不要将此属性用作验证工具。 文件上传应在服务器上进行验证。
accept
属性可用于以下元素:
元素 Element | 属性 Attribute |
---|---|
<input> | accept |
指定服务器只接受文件上传中的图片文件:
<form action="/action_page.php"> <input type="file" name="pic" accept="image/*"> <input type="submit"> </form>
支持图片文件选择的同时,还支持 .heic
文件选择。
<form action="/action_page.php"> <input type="file" name="pic" accept="image/*, .heic"> <input type="submit"> </form>
表中的数字指定了完全支持该属性的第一个浏览器版本。
Element | |||||
---|---|---|---|---|---|
accept | 8.0 | 10.0 | 4.0 | 6.0 | 15.0 |