--- title: slug: Web/HTML/Element/Input translation_of: Web/HTML/Element/input ---
Элемент HTML <input>
используется для создания интерактивных элементов управления в веб-формах для получения данных от пользователя; в зависимости от устройства и {{Glossary("user agent")}}, доступен широкий выбор типов входных данных и виджетов управления. Из-за огромного количества возможных сочетаний типов ввода и атрибутов это один из самых мощных и сложных элементов HTML.
hidden
value, labellable element, palpable content.Этот элемент содержит глобальные атрибуты.
audio/*
для аудиофайлов {{HTMLVersionInline("5")}}video/*
для видеофайлов {{HTMLVersionInline("5")}}image/*
для файлов с изображениями {{HTMLVersionInline("5")}}text
. Возможными значениями являются:
button
: Кнопка без предопределённого поведения.checkbox
: Флажок («чекбокс»). Следует использовать атрибут value для определения значения, которое будет отдано этим элементом. Используйте атрибут checked, чтобы указать, должен ли флажок быть выставлен. Можно также использовать атрибут indeterminate, чтобы указать, что флажок находится в неопределённом состоянии (на большинстве платформ при этом рисуется горизонтальная линия поперёк флажка).color
: {{HTMLVersionInline("5")}} Элемент управления цветом. Пользовательский интерфейс выбора цвета не имеет никаких других функций, кроме принятия простых цветов в виде текста (больше информации).date
: {{HTMLVersionInline("5")}} Элемент управления для ввода даты (год, месяц и день, без времени).datetime
: {{HTMLVersionInline("5")}} Элемент управления для ввода даты и времени (час, минута, секунда и доля секунды) в соответствии с часовым поясом UTC.datetime-local
: {{HTMLVersionInline("5")}} Элемент управления для ввода даты и времени без часового пояса.email
: {{HTMLVersionInline("5")}} Поле для редактирования адреса электронной почты. Перед отправкой проверяется, что входное значение содержит либо пустую строку, либо один действительный адрес электронной почты. Соответствуют CSS псевдоклассам {{cssxref(":valid")}} and {{cssxref(":invalid")}}.file
: Элемент управления, который позволяет пользователю выбрать файл. Используйте атрибут accept, чтобы определить типы файлов, которые могут быть выбраны.hidden
: Элемент управления, которые не отображается, но чьё значение отправлено на сервер.image
: Кнопка вставки изображения. Вы должны использовать атрибут src, чтобы определить путь к изображению и атрибут alt - для определения альтернативного текста. Вы можете использовать атрибуты height и width, чтобы определить размер вставки изображения в пикселях.month
: {{HTMLVersionInline("5")}} Элемент управления для ввода месяца и года без часового пояса.number
: {{HTMLVersionInline("5")}} Элемент управления ввода числа(тип float).password
: Однострочное текстовое поле, чьё значение скрыто символом "звёздочка". Используйте атрибуты minlength и maxlength, чтобы указать минимальную и максимальную длину значения, которое может быть введено.
radio
: Кнопка-переключатель, позволяет выбрать одно значение из множественного выбора.range
: {{HTMLVersionInline("5")}}Элемент управления для ввода числа, точное значение которого не имеет значения. Этот тип управления использует следующие значения по умолчанию, если соответствующие атрибуты не указаны:
min
: 0max
: 100value
: min
+ (max
-min
)/2, or min
if max
is less than min
step
: 1reset
: Кнопка сброса содержимого формы в состояние по умолчанию.search
: {{HTMLVersionInline("5")}}Однострочное текстовое поле для ввода строк поиска; разрывы строк автоматически удаляются из входного значения.submit
: Кнопка для отправления формы.tel
: {{HTMLVersionInline("5")}} Элемент управления для ввода номера телефона; разрывы строк автоматически удаляются из входного значения, но никакой другой синтаксис не применяется. Можно использовать такие атрибуты как pattern и maxlength, чтобы ограничить вводимое значение.text
: Однострочное текстовое поле. Переносы строк автоматически удаляются из входного значения.time
: {{HTMLVersionInline("5")}} Элемент управления для ввода значения времени без часового пояса.url
: {{HTMLVersionInline("5")}} Поле для редактирования URI. Введённое значение должно содержать либо пустую строку, либо допустимый абсолютный URL. В противном случае значение не будет принято. Переводы строк, лидирующие и завершающие пробельные символы будут автоматически удалены из введённого значения. Можно использовать такие атрибуты как pattern или maxlength, чтобы ограничить вводимые значения. Псевдоклассы CSS {{cssxref(":valid")}} and {{cssxref(":invalid")}} применяются при необходимости.week
: {{HTMLVersionInline("5")}} Элемент управления для ввода даты, содержащей число неделя-год и номер недели без часового пояса.file
, данный атрибут определяет типы файлов, которые сервер может принять. В противном случае файл игнорируется. Значение должно быть списком уникальных спецификаторов типов содержания, разделённым запятыми:go
, done
, next
, search
, и send
; они автоматически сопоставляются с необходимой строкой (являются чувствительными к регистру).hidden, password,
checkbox
, radio
, file
, или type кнопка (button
, submit
, reset
, image
). Возможные значения:
off
: Пользователь должен каждый раз полностью вводить значение в поле или документ предусматривает свой собственный метод автозаполнения; браузер не делает автоматического заполнения записи.on
: Браузер автоматически заканчивает значение поля, основываясь на значениях, которые вводились пользователем ранее.Если не атрибут autocomplete не указан в <input>
, тогда браузер использует атрибут autocomplete формы, которая является родительской для данной формы. The form owner is either the form
element that this <input>
element is a descendant of or the form element whose id is specified by the form attribute of the input element. For more information, see the {{htmlattrxref("autocomplete", "form")}} attribute in {{HTMLElement("form")}}.
hidden
(that is, you cannot automatically set focus to a hidden control).search
, previous search term values will persist in the dropdown across page load.radio
or checkbox
, the presence of this Boolean attribute indicates that the control is selected by default; otherwise it is ignored.click
event will not be dispatched on disabled controls. Also, a disabled control's value isn't submitted with the form.<input>
element must be a descendant of a {{HTMLElement("form")}} element. This attribute enables you to place <input>
elements anywhere within a document, not just as descendants of their form elements. An input can only be associated with one form.application/x-www-form-urlencoded
: The default value if the attribute is not specified.multipart/form-data
: Use this value if you are using an {{HTMLElement("input")}} element with the {{htmlattrxref("type","input")}} attribute set to file
.text/plain
If this attribute is specified, it overrides the {{htmlattrxref("enctype","form")}} attribute of the element's form owner.
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 {{htmlattrxref("method","form")}} attribute of the element's form owner.
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
.image
, this attribute defines the height of the image displayed for the button.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.id
элемента {{HTMLElement("datalist")}}, в котором находится список предопределённых значений для заполнения. Браузер отображает только те варианты, которые соответствуют введённым символами. Этот атрибут игнорируется, когда атрибут type принимает значения hidden
, checkbox
, radio
, file
, или type в качестве кнопки.text
, email
, search
, password
, tel
, or url
, this attribute specifies the maximum number of characters (in Unicode code points) that the user can enter; for other control types, it is ignored. It can exceed the value of the size attribute. If it is not specified, the user can enter an unlimited number of characters. Specifying a negative number results in the default behavior; that is, the user can enter an unlimited number of characters. The constraint is evaluated only when the value of the attribute has been changed.text
, email
, search
, password
, tel
, or url
, this attribute specifies the minimum number of characters (in Unicode code points) that the user can enter; for other control types, it is ignored.email
или file
; в противном случае он игнорируется. text
, search
, tel
, url
or email
; otherwise it is ignored. The regular expression language is the same as JavaScript's. The pattern is not surrounded by forward slashes.text
, search
, tel
, url
or email
; otherwise it is ignored.
placeholder
attribute instead of a {{HTMLElement("label")}} element. Their purposes are different: the {{HTMLElement("label")}} attribute describes the role of the form element; that is, it indicates what kind of information is expected, the placeholder
attribute is a hint about the format the content should take. There are cases in which the placeholder
attribute is never displayed to the user, so the form must be understandable without it.{{HTMLVersionInline("5")}} This attribute is ignored if the value of the type attribute is hidden
, range
, color
, checkbox
, radio
, file
, or a button type.
hidden
, image
, or a button type (submit
, reset
, or button
). The {{cssxref(":optional")}} and {{cssxref(":required")}} CSS pseudo-classes will be applied to the field as appropriate.text
or password
, in which case, it is an integer number of characters. Starting in HTML5, this attribute applies only when the type attribute is set to text
, search
, tel
, url
, email
, or password
; otherwise it is ignored. In addition, the size must be greater than zero. If you don't specify a size, a default value of 20 is used.true
indicates that the element needs to have its spelling and grammar checked. The value default
indicates that the element is to act according to a default behavior, possibly based on the parent element's own spellcheck
value. The value false
indicates that the element should not be checked.image
, this attribute specifies a URI for the location of an image to display on the graphical submit button; otherwise it is ignored.any
or a positive floating point number. If this attribute is not set to any
, the control accepts only values at multiples of the step value greater than the minimum.radio
or checkbox
.image
, this attribute defines the width of the image displayed for the button.Note: Starting in {{Gecko("2.0")}}, calling the click()
method on an {{HTMLElement("input")}} element of type "file" opens the file picker and lets the user select files. See Using files from web applications for an example and more details.
You can't set the value of a file picker from a script; doing something like the following has no effect:
var e = getElementById("someFileInputElement"); e.value = "foo";
If you want Firefox to present a custom error message when a field fails to validate, you can use the x-moz-errormessage
attribute to do so:
<input type="email" x-moz-errormessage="Please specify a valid email address.">
Note, however, that this is not standard and will not have an effect on other browsers.
<!-- A basic input --> <input type="text" name="input" value="Type here">
<!-- A common form that includes input tags --> <form action="getform.php" method="get"> First name: <input type="text" name="first_name" /><br /> Last name: <input type="text" name="last_name" /><br /> E-mail: <input type="email" name="user_email" /><br /> <input type="submit" value="Submit" /> </form>
You can use the {{htmlattrxref("mozactionhint", "input")}} attribute to specify the text for the label of the enter key on the virtual keyboard when your form is rendered on Firefox mobile. For example, to have a "Next" label, you can do this:
<input type="text" mozactionhint="next" name="sometext" />
The result is:
Specification | Status | Comment |
---|---|---|
{{SpecName('HTML WHATWG', 'the-input-element.html#the-input-element', '<input>')}} | {{Spec2('HTML WHATWG')}} | |
{{SpecName('HTML5 W3C', 'forms.html#the-input-element', '<input>')}} | {{Spec2('HTML5 W3C')}} | |
{{SpecName('HTML4.01', 'interact/forms.html#h-17.4', '<form>')}} | {{Spec2('HTML4.01')}} |
{{Compat("html.elements.input")}}
[1] Распознаётся, но UI отсутствует.
[2] Отсутствует для type="checkbox"
и type="radio"
.
[3] В Safari autocapitalize="words"
переводит в верхний регистр каждый второй символ слова.
[4] datetime
был удалён из спецификации и браузеров в пользу datetime-local
.
[5] См {{bug(1355389)}}
[6] Ещё не имплементировано. Наблюдать: {{bug("888320")}} и TPE DOM/Date time input types.
Starting in Gecko 9.0 {{geckoRelease("9.0")}}, Firefox for Android lets users capture images using their camera and upload them, without having to leave the browser. Web developers can implement this feature by simply specifying setting the accept
attribute's value to "image/*" on their file
input, like this:
<input type="file" accept="image/*">
Firefox for Android sets a default {{ cssxref("background-image") }} gradient on all type="text"
, type="file"
, type="button"
, and type="submit"
inputs. This can be disabled using background-image: none
.
Firefox for Android also sets a default {{ cssxref("border") }} on all <input type="file">
elements.
{{HTMLRef}}