그러냐

HTML <input> accept Attribute 본문

html

HTML <input> accept Attribute

관절분리 2017. 2. 1. 17:46
반응형

HTML <input> accept Attribute

❮ HTML <input> tag

Example

Specify that the server accepts only image files in the file upload:

<form action="demo_form.asp">
  <input type="file" name="pic" accept="image/*">
  <input type="submit">
</form>
Try it Yourself »

Definition and Usage

The accept attribute specifies the types of files that the server accepts (that can be submitted through a file upload).

Note: The accept attribute can only be used with <input type="file">.

Tip: Do not use this attribute as a validation tool. File uploads should be validated on the server.


Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Attribute
accept8.010.04.06.015.0

Differences Between HTML 4.01 and HTML5

NONE.


Syntax

<input accept="file_extension|audio/*|video/*|image/*|media_type">

Tip: To specify more than one value, separate the values with a comma (e.g. <input accept="audio/*,video/*,image/*" />.

Attribute Values

ValueDescription
file_extensionA file extension starting with the STOP character, e.g: .gif, .jpg, .png, .doc
audio/*All sound files are accepted
video/*All video files are accepted
image/*All image files are accepted
media_typeA valid media type, with no parameters. Look at IANA Media Types for a complete list of standard media types



출처 : http://www.w3schools.com/tags/att_input_accept.asp

반응형