Cet article nécessite une relecture rédactionnelle. Voici comment vous pouvez aider.
Cette traduction est en cours.
L'élément HTML <input type="date">
est une version spécifique de l'élément <input>
utilisée pour créer champ de saisie pour une date.
Les navigateurs génèrent un contrôle pour entrer et changer la date. Cette date comprends une année, un mois et un jour. Le contrôle en lui même varie d'un navigateur à l'autre ; les navigateurs ne supportant pas ce type afficherons un champ de texte.
Catégorie de contenu | Contenu de flux, listé, envoyable, réinitialisable, associé à un formuaire, contenu phrasé, contenu labellable, contenu tangible. |
---|---|
Contenu permis | Aucun, c'est un empty element. |
Omission de tag | Doit avoir un tag de départ mais pas forcement de tag de fin. |
Eléments parents autorisés | Tout élément acceptant le contenu phrasé. |
Interface DOM | HTMLInputElement |
Attributs
En plus de tous les attributs listés ci-dessous, cet élément peut avoir n'importe lequel des attributs globaux.
mozactionhint
- Spécifie un «indice d'action» utilisé pour déterminer ce qu'il faut écrire sur la touche Entrée sur les mobiles avec des claviers virtuels. Les valeurs supportées sont
go
,done
,next
,search
, etsend
; elles sont automatiquements converties vers le texte approprié (et sont sensible à la casse). autofocus
- Cet attribut booléen vous permets de spécifier qu'un contrôle dans un formulaire doit avoir le focus lors du chargement de la page, à moins que l'utilisateur ne le change lui-même, par exemple en écrivant dans un autre contrôle. Seul un élément de formulaire par document peut avoir l'attribut autofocus qui est un booléen. Il ne peut pas être appliqué si l'attibut type vaut
hidden
(c'est ainsi, vous ne pouvez pas automatiquement passer le focus à un contrôle caché). disabled
-
Cet attribut booléen indique qu'aucune interaction n'est possible avec le contrôle. Notez que l'évènement
click
ne sera pas envoyé avec les contrôles désactivés. Aussi, la valeur des contrôles désactivés n'est pas envoyée avec le formulaire. form
- L'élément form avec lequel l'élément de saisie est associé (c'est le formulaire d'appartenance). La valeur de cet attribut doit être un id d'un élément
<form>
dans le même document. Si cet attribut n'est pas spécifié, cet élément<input>
doit être un descendant d'un élément<form>
. Cet attribut vous permet de placer vos éléments<input>
n'importe où dans un document, pas seulement dans un formulaire. Un champ de saisie ne peut être associé qu'à un seul formulaire. formaction
- L'URI d'un programme qui traitera les informations envoyées par le champ de saisie, si c'est un bouton d'envoi ou une image. Si il est spécifié, cet attribut remplace l'attribut
action
du formulaire contenant l'élément. formenctype
- Si le champ de saisie est un bouton d'envoi ou un image, cet attribut spécifie le type de contenu qui est utilisé pour envoyer le formulaire au serveur. Les valeurs possible sont :
application/x-www-form-urlencoded
: La valeur par défaut si l'attribut n'est pas spécifié.multipart/form-data
: Utilisez cette valeur si vous utilisez un élément<input>
avec l'attributtype
assigné àfile
.text/plain
Si cet attribut est spécifié, il remplace l'attribut
enctype
du formulaire contenant l'élément. formmethod
- If the input element is a submit button or image, this attribute specifies the HTTP method that the browser uses to submit the form. Possible values are:
post
: The data from the form is included in the body of the form and is sent to the server.get
: The data from the form are appended to the form attribute URI, with a '?' as a separator, and the resulting URI is sent to the server. Use this method when the form has no side-effects and contains only ASCII characters.
If specified, this attribute overrides the
method
attribute of the element's form owner. formnovalidate
- If the input element is a submit button or image, this Boolean attribute specifies that the form is not to be validated when it is submitted. If this attribute is specified, it overrides the
novalidate
attribute of the element's form owner. formtarget
- If the input element is a submit button or image, this attribute is a name or keyword indicating where to display the response that is received after submitting the form. This is a name of, or keyword for, a browsing context (for example, tab, window, or inline frame). If this attribute is specified, it overrides the
target
attribute of the elements's form owner. The following keywords have special meanings:- _
self
: Load the response into the same browsing context as the current one. This value is the default if the attribute is not specified. _blank
: Load the response into a new unnamed browsing context._parent
: Load the response into the parent browsing context of the current one. If there is no parent, this option behaves the same way as_self
._top
: Load the response into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as_self
.
- _
inputmode
- A hint to the browser for which keyboard to display. This attribute applies when the value of the type attribute is text, password, email, or url. Possible values are:
verbatim
: Alphanumeric, non-prose content such as usernames and passwords.latin
: Latin-script input in the user's preferred language with typing aids such as text prediction enabled. For human-to-computer communication such as search boxes.latin-name
: As latin, but for human names.latin-prose
: As latin, but with more aggressive typing aids. For human-to-human communication such as instant messaging for email.full-width-latin
: As latin-prose, but for the user's secondary languages.kana
: Kana or romaji input, typically hiragana input, using full-width characters, with support for converting to kanji. Intended for Japanese text input.katakana
: Katakana input, using full-width characters, with support for converting to kanji. Intended for Japanese text input.numeric
: Numeric input, including keys for the digits 0 to 9, the user's preferred thousands separator character, and the character for indicating negative numbers. Intended for numeric codes, e.g. credit card numbers. For actual numbers, prefer using <input type="number">tel
: Telephone input, including asterisk and pound key. Use <input type="tel"> if possible instead.email
: Email input. Use <input type="email"> if possible instead.url
: URL input. Use <input type="url"> if possible instead.
list
- Identifies a list of pre-defined options to suggest to the user. The value must be the id of a
<datalist>
element in the same document. The browser displays only options that are valid values for this input element. max
- The maximum value for this item, which must not be less than its minimum (min attribute) value.
min
- The minimum value for this item, which must not be greater than its maximum (max attribute) value.
name
- The name of the control, which is submitted with the form data.
readonly
- This Boolean attribute indicates that the user cannot modify the value of the control.
required
- This attribute specifies that the user must fill in a value before submitting a form. It cannot be used when the type attribute is
hidden
,image
, or a button type (submit
,reset
, orbutton
). The:optional
and:required
CSS pseudo-classes will be applied to the field as appropriate. selectionDirection
- The direction in which selection occurred. This is "forward" if the selection was made from left-to-right in an LTR locale or right-to-left in an RTL locale, or "backward" if the selection was made in the opposite direction. This can be "none" if the selection direction is unknown.
spellcheck
- Setting the value of this attribute to
true
indicates that the element needs to have its spelling and grammar checked. The valuedefault
indicates that the element is to act according to a default behavior, possibly based on the parent element's ownspellcheck
value. The valuefalse
indicates that the element should not be checked. step
- Works with the min and max attributes to limit the increments at which a numeric or date-time value can be set. It can be the string
any
or a positive floating point number. If this attribute is not set toany
, the control accepts only values at multiples of the step value greater than the minimum. value
- The initial value of the control. This attribute is optional.
Note that when reloading the page, Gecko and IE will ignore the value specified in the HTML source, if the value was changed before the reload. x-moz-errormessage
- This Mozilla extension allows you to specify the error message to display when a field doesn't successfully validate.
Examples
To create a widget to display a date, use:
<input type = "date" >
Spécifications
Browser compatibility
See also
- The generic
<input>
element and the interface used to manipulate it,HTMLInputElement
- Date and Time picker tutorial