Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.42 KB

accept.md

File metadata and controls

55 lines (38 loc) · 1.42 KB

HTML accept 属性

定义和用法

accept 属性指定服务器接受的文件类型(可以通过文件上传提交)。

注意: accept 属性只能与 <input type="file"> 一起使用。

提示: 不要将此属性用作验证工具。 文件上传应在服务器上进行验证。

适用于

accept 属性可用于以下元素:

元素 Element 属性 Attribute
<input> accept

Input 示例

指定服务器只接受文件上传中的图片文件:

<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 chrome edge firefox safari opera
accept 8.0 10.0 4.0 6.0 15.0