<input type="image">

<input type="image"> - это кнопка отправки в виде изображения. Вы можете использовать атрибут src, чтобы выбрать источник изображения и атрибут alt, чтобы добавить альтернативный текст. Атрибутами width и height можно указать размер изображения в пикселях.

Разрешённое содержимое Нету, это пустой элемент.
Необязательный закрывающийся тег Обязательно должен быть открывающийся тег, и обязательно отсутствует закрывающий.
Разрешённые родительские элементы Любой элемент, которому доступен фразообразующий контент (phrasing content (en-US)).
DOM-интерфейс HTMLInputElement (en-US)

Атрибуты

Этому элементу доступны глобальные атрибуты (global attributes (en-US)).

type

formaction

The URI of a program that processes the information submitted by the input element, here image if specified, it overrides the action attribute of the element's form owner.

formenctype

If the input element is an image, this attribute specifies the type of content that is used to submit the form to the server. Possible values are:

  • 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 <input> element with the type attribute set to file.
  • text/plain If this attribute is specified, it overrides the enctype attribute of the element's form owner.
formmethod

In image input element, 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 is 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

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

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 element'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.
height

This attribute defines the height of the image displayed for the button.

required

This attribute specifies that the user must fill in a value before submitting a form but it cannot be used when the type attribute is image type (submit, reset, or button). The :optional and :required CSS pseudo-classes will be applied to the field as appropriate.

src

This attribute specifies a URI for the location of an image to display on the graphical submit button; otherwise it is ignored.

usemap

The name of a <map> element as an image map.

width

This attribute defines the width of the image displayed for the button.

Примеры

Поле в виде логотипа Firefox

html
<input type="image" name="image" src="fxlogo.png" width="50" />

Результат

Спецификации

Specification
HTML Standard
# image-button-state-(type=image)

Совместимость с браузерами

BCD tables only load in the browser

Смотрите также