Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

这篇文章需要文法复核。如何帮忙。

概述

input (<input>) 元素用来创建基于web表单的可交互控件.

Usage context

Content categories Flow content; phrasing content; interactive content (if not in the hidden state); listed, labelable, submittable, resettable, form-associated element.
Permitted content None, this is a void element.
Tag omission Must have a start tag and must not have an end tag.
Normative document HTML 5, section 4.10.7; HTML 4.01, section 17.4

属性

该元素支持全局属性,以及以下属性。

type
控件类型的显示。如果这个属性没有指定,默认的类型是 text。可用的值包括:
  • button:无缺省行为按钮。
  • checkbox: 复选框。必须使用 value 属性定义此控件被提交时的值。使用 checked 属性指示控件是否被选择。也可以使用 indeterminate 指示复选框在一种不确定状态(大多数平台上,显示为一条穿过复选框的水平线)。
  • colorHTML5 用于指定颜色的控件。
  • date:HTML5 用于输入日期的控件(年,月,日,不包括时间)。
  • datetimeHTML5 基于 UTC 时区的日期时间输入控件(时,分,秒及几分之一秒)。
  • datetime-localHTML5 用于输入日期时间控件,不包含时区。
  • emailHTML5 用于编辑 e-mail 的字段。 合适的时候可以使用 :valid:invalid CSS 伪类。
  • file:此控件可以让用户选择文件。使用 accept 属性可以定义控件可以选择的文件类型。
  • hidden:不显示在页面上的控件,但它的值会被提交到服务器。
  • image:图片提交按钮。必须使用 src 属性定义图片的来源及使用 alt 定义替代文本。还可以使用 heightwidth 属性以像素为单位定义图片的大小。
  • monthHTML5 用于输入年月的控件,不带时区。
  • number: HTML5 用于输入浮点数的控件。
  • password:一个值被遮盖的单行文本字段。使用 maxlength 指定可以输入的值的最大长度 。
  • radio:单选按钮。必须使用 value 属性定义此控件被提交时的值。使用checked 必须指示控件是否缺省被选择。在同一个”单选按钮组“中,所有单选按钮的 name 属性使用同一个值; 一个单选按钮组中是,同一时间只有一个单选按钮可以被选择。
  • rangeHTML5 用于输入不精确值控件。如果未指定相应的属性,控件使用如下缺省值:
    • min:0
    • max:100
    • valuemin + (max-min)/2,或当 max 小于 min 时使用 min
    • step:1
  • reset:用于将表单所内容设置为缺省值的按钮。
  • searchHTML5用于输入搜索字符串的单行文本字段。换行会被从输入的值中自动移除。
  • submit:用于提交表单的按钮。
  • telHTML5 用于输入电话号码的控件;换行会被自动从输入的值中移除A,,but no other syntax is enforced。可以使用属性,比如 patternmaxlength 来约束控件输入的值。恰当的时候,可以应用 :valid:invalid CSS 伪类。
  • text:单行字段;换行会将自动从输入的值中移除。
  • timeHTML5 用于输入不含时区的时间控件。
  • urlHTML5 用于编辑URL的字段。 The user may enter a blank or invalid address. 换行会被自动从输入值中移队。可以使用如:patternmaxlength 样的属性来约束输入的值。 恰当的时候使可以应用 :valid:invalid CSS 伪类。
  • weekHTML5 用于输入一个由星期-年组成的日期,日期不包括时区。
accept
如果该元素的 type 属性的值是file,则该属性表明了服务器端可接受的文件类型;否则它将被忽略。该属性的值必须为一个逗号分割的列表,包含了多个唯一的内容类型声明:
  • 以 STOP 字符 (U+002E) 开始的文件扩展名。(例如:".jpg,.png,.doc")
  • 一个有效的 MIME 类型,但没有扩展名
  • audio/* 表示音频文件 HTML5
  • video/* 表示视频文件 HTML5
  • image/* 表示图片文件 HTML5
accesskey HTML 4 only, 已废弃 HTML5
用户按下后可以获得此控件焦点的单个字符。这是 HTML5 全局属性。
mozactionhint
Specifies an "action hint" used to determine how to label the enter key on mobile devices with virtual keyboards. Supported values are go, done, next, search, and send; these automatically get mapped to the appropriate string (and are case-insensitive).
autocapitalize
This is a nonstandard attribute used by iOS Safari Mobile which controls whether and how the text value should be automatically capitalized as it is entered/edited by the user. The non-deprecated values are available in iOS 5 and later. Possible values are:
  • none: Completely disables automatic capitalization
  • sentences: Automatically capitalize the first letter of sentences.
  • words: Automatically capitalize the first letter of words.
  • characters: Automatically capitalize all characters.
  • on: Deprecated since iOS 5.
  • off: Deprecated since iOS 5.
autocapitalize documentation in the Safari HTML Reference
autocomplete HTML5
这个属性表示这个控件的值是否可被浏览器自动填充。如果type属性的值是hiddencheckboxradiofile,或为按钮类型(buttonsubmitresetimage),则本属性被忽略。可用的值是:
  • off: 用户必须手动填值,或者该页面提供了自己的自动补全方法。浏览器不对此字段自动填充。
  • on: 浏览器可以根据用户先前的填表情况对此字段自动填值。
  • name: 完整的姓名
  • honorific-prefix: Prefix or title (e.g. "Mr.", "Ms.", "Dr.", "Mlle")
  • given-name :名
  • additional-name
  • family-name:姓
  • honorific-suffix: Suffix (e.g. "Jr.", "B.Sc.", "MBASW", "II")
  • nickname
  • email
  • username
  • new-password: 新密码(如创建帐号或更改密码时使用)
  • current-password
  • organization-title: Job title (e.g. "Software Engineer", "Senior Vice President", "Deputy Managing Director")
  • organization
  • street-address
  • address-line1, address-line2, address-line3, address-level4, address-level3, address-level2, address-level1
  • country
  • country-name
  • postal-code
  • cc-name: Full name as given on the payment instrument
  • cc-given-name
  • cc-additional-name
  • cc-family-name
  • cc-number: Code identifying the payment instrument (e.g. the credit card number)
  • cc-exp: Expiration date of the payment instrument
  • cc-exp-month
  • cc-exp-year
  • cc-csc: Security code for the payment instrument 
  • cc-type: Type of payment instrument (e.g. Visa)
  • transaction-currency
  • transaction-amount
  • language: Preferred language; Valid BCP 47 language tag
  • bday
  • bday-day
  • bday-month
  • bday-year
  • sex: Gender identity (e.g. Female, Fa'afafine); Free-form text, no newlines
  • tel
  • url: Home page or other Web page corresponding to the company, person, address, or contact information in the other fields associated with this field
  • photo: Photograph, icon, or other image corresponding to the company, person, address, or contact information in the other fields associated with this field
  • 参考 WHATWG 标准 获取更多详细内容。

如果<input>元素上没有autocomplete属性,浏览器可使用包含该input元素的表单(<form>)或通过input的form属性指定的表单的autocomplete属性值。更多信息请参见<form>autocomplete属性。

autofocus HTML5
This Boolean attribute lets you specify that a form control should have input focus when the page loads, unless the user overrides it, for example by typing in a different control. Only one form element in a document can have the autofocus attribute, which is a Boolean. It cannot be applied if the type attribute is set to hidden (that is, you cannot automatically set focus to a hidden control).
autosave HTML5
This attribute should be defined as a unique value. If the value of the type attribute is search, previous search term values will persist in the dropdown across page load.
checked
如果该元素的type属性的值为radio或者checkbox,则该布尔属性的存在与否表明了该控件是否是默认选择状态.
disabled
这个布尔属性表示此表单控件不可用。 特别是在禁用的控件中, click 事件 将不会被分发 。 并且,禁用的控件的值在提交表单时也不会被提交。如果 type 属性为  hidden,此属性将被忽略。
form HTML5
The form element that the input element is associated with (its form owner). The value of the attribute must be an id of a <form> element in the same document. If this attribute is not specified, this <input> element must be a descendant of a <form> element. This attribute enables you to place <input> elements anywhere within a document, not just as descendants of their form elements.
formactionHTML5
The URI of a program that processes the information submitted by the input element, if it is a submit button or image. If specified, it overrides the action attribute of the element's form owner.
formenctypeHTML5
If the input element is a submit button or 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.

formmethodHTML5
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.

formnovalidateHTML5
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.
formtargetHTML5
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.
height HTML5
 If the value of the type attribute is image, this attribute defines the height of the image displayed for the button.
list HTML5
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. This attribute is ignored when the type attribute's value is hidden, checkbox, radio, file, or a button type.
max HTML5 
The maximum (numeric or date-time) value for this item, which must not be less than its minimum (min attribute) value.
maxlength HTML5
如果 type 的值是  textemailsearch, password, tel, 或 url,那么这个属性指明了用户最多可以输入的字符个数(按照Unicode编码方式计数);对于其他类型的输入框,该属性被忽略。它可以大于 size 属性的值。如果不指定这个属性,那么用户可以输入任意多的字符。如果指定为一个负值,那么元素表现出默认行为,即用户可以输入任意多的字符。本属性的约束规则,仅在元素的 value 属性发生变化时才会执行。
min HTML5 
The minimum (numeric or date-time) value for this item, which must not be greater than its maximum (max attribute) value.
multipleHTML5
This Boolean attribute indicates whether the user can enter more than one value. This attribute applies when the type attribute is set to email or file; otherwise it is ignored.
name
The name of the control, which is submitted with the form data.
patternHTML5
A regular expression that the control's value is checked against. The pattern must match the entire value, not just some subset. Use the title attribute to describe the pattern to help the user. This attribute applies when the value of the type attribute is text, search, tel, url or email; otherwise it is ignored.
placeholder HTML5
A hint to the user of what can be entered in the control . The placeholder text must not contain carriage returns or line-feeds. This attribute applies when the value of the type attribute is text, search, tel, url or email; otherwise it is ignored.
Note: Do not use the placeholder attribute instead of a <label> element. Their purposes are different: the <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.
readonly
This Boolean attribute indicates that the user cannot modify the value of the control.

HTML5 This attribute is ignored if the value of the type attribute is hidden, range, color, checkbox, radio, file, or a button type.

required HTML5
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, or button). The :optional and :required CSS pseudo-classes will be applied to the field as appropriate.
selectionDirection HTML5
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.
size
The initial size of the control. This value is in pixels unless the value of the type attribute is 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.
spellcheck HTML5
Setting the value of this attribute to 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.
src
If the value of the type attribute is image, this attribute specifies a URI for the location of an image to display on the graphical submit button; otherwise it is ignored.
step HTML5
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 to any, the control accepts only values at multiples of the step value greater than the minimum.
tabindex element-specific in HTML 4, global in HTML5
The position of the element in the tabbing navigation order for the current document.
usemap HTML 4 only, 已废弃 HTML5
The name of a <map> element to as an image map.
value
The initial value of the control. This attribute is optional except when the value of the type attribute is radio or checkbox.
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.
width HTML5
 If the value of the type attribute is image, this attribute defines the width of the image displayed for the button.
x-moz-errormessage
This Mozilla extension allows you to specify the error message to display when a field doesn't successfully validate.

 


备注

File inputs

Gecko 2.0 note
(Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1)

从Gecko 2.0 (Firefox 4 / Thunderbird 3.3 / SeaMonkey 2.1)开始,在一个file类型的<input>元素上调用click()方法,会打开文件选择对话框让用户选择文件.查看Using files from web applications 了解更多详情.

你不能通过脚本为file类型的input元素赋值,这样做没有任何效果:

var e = getElementById("someFileInputElement");
e.value = "foo";

错误消息

如果你想让Firefox在某个表单字段在有效性验证失败时显示自定义的错误消息,你可以使用 x-moz-errormessage 属性来达到这种效果:

<input type="email" x-moz-errormessage="Please specify a valid email address.">

不过需要注意的是,这不是一个标准属性,在其他浏览器中没有任何效果.


DOM 接口

该元素实现了 HTMLInputElement 接口.

例子

一个简单的文本输入框

<!-- 一个基本的文本输入框 -->
<input type="text" name="input" value="Type here">


一个常见的表单用例

<!-- 一个常见的表单,包含了一些input元素 -->
<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>

 

在Firefox mobile上使用使用mozactionhint属性

当你的表单在Firefox mobile中显示时,你可以使用 mozactionhint 属性来指定虚拟键盘中回车键上的提示文字 .例如,想要一个"Next"标签,你可以这样写:

<input type="text" mozactionhint="next" name="sometext" />

效果如下:

mozactionhint.png


浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 1.0 1.0 (1.7 or earlier) 2 or earlier 1.0 1.0
type 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
type=button 1.0 1.0 (1.7 or earlier) 3 1.0 1.0
type=checkbox 1.0 1.0 (1.7 or earlier)
3.6 (1.9.2) for indeterminate value
2 1.0 1.0
type=color 21.0

29.0 (29.0) (Not for Windows Touch yet)

未实现 11.01 未实现
type=date 5.0 未实现
未实现 (查看 bug 825294)
未实现 10.62 (Yes) (recognized but no UI)
type=datetime

未实现
(recognized but no UI)

未实现
未实现 (查看 bug 825294)
未实现 10.62 (Yes) (recognized but no UI)
type=datetime-local 5.0 未实现
未实现 (查看 bug 825294)
未实现 10.62 (Yes) (recognized but no UI)
type=email 5.0 4.0 (2.0) 10 10.62 ?
type=file 1.0 1.0 (1.7 or earlier) 3.02 1.0 1.0
type=hidden 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
type=image 1.0 Gecko 2.0 only sends x and y coordinates when clicked, not longer the name/value of the element 2 1.0 1.0
type=month 5.0 未实现
未实现 (查看 bug 446510)
未实现 10.62 (Yes) (recognized but no UI)
type=number 6.0 (Localization in Chrome 11) 29.0 (29.0) 10
(recognized but no UI)
10.62 (Yes)
type=password 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
type=radio 1.0 1.0 (1.7 or earlier)
3.6 (1.9.2) for indeterminate value
2 1.0 1.0
type=range 5.0 23.0 (23.0) 10 10.62 (11.01 added support for a default value) (Yes)
type=reset 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
type=search 5.0 4.0 (2.0) 10 11.01 (Yes)
type=submit 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
type=tel 5.0 4.0 (2.0) 10 11.01 ?
type=text 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
type=time 5.0 未实现
未实现 (查看 bug 825294)
未实现 10.62 (Yes) (recognized but no UI)
type=url 5.0 4.0 (2.0) 10 10.62 ?
type=week 5.0 未实现
未实现 (查看 bug 825294)
未实现 10.62 (Yes) (recognized but no UI)

accept=[file extension]

(Yes) 未实现 10 ? 未实现

accept=[MIME type]

8.0 16.0 (16.0) 10 10 未实现
accept=audio/* (Yes) 4.0 (2.0)
Filters for the following audio file extensions: .aac, .aif, .flac, .iff, .m4a, .m4b, .mid, .midi, .mp3, .mpa, .mpc, .oga, .ogg, .ra, .ram, .snd, .wav, .wma
10 未实现 未实现
accept=video/* (Yes) 4.0 (2.0)
Filters for the following video file extensions: .avi, .divx, .flv, .m4v, .mkv, .mov, .mp4, .mpeg, .mpg, .ogm, .ogv, .ogx, .rm, .rmvb, .smil, .webm, .wmv, .xvid
10 未实现 未实现
accept=image/* (Yes) 4.0 (2.0)
Filters for the following image file extensions: .jpe, .jpg, .jpeg, .gif, .png, .bmp, .ico, .svg, .svgz, .tif, .tiff, .ai, .drw, .pct, .psp, .xcf, .psd, .raw
10 未实现 未实现
accept=[. + ext] ? 37.0 (37.0) ? ? ?
accesskey 1.0 (Yes) 6 1.0 ?
mozactionhint 未实现 4.0 (2.0) 未实现 未实现 未实现
autocomplete 17.0 4.0 (2.0) 5 9.6 5.2
autofocus 5.0 4.0 (2.0) 10 9.6 5.0
checked 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
disabled 1.0 1.0 (1.7 or earlier) 6 1.0 1.0
form 9.0 4.0 (2.0) ? 10.62 ?
formaction 9.0 4.0 (2.0) 10 10.62 5.2
formenctype 9.0 4.0 (2.0) 10 10.62 ?
formmethod 9.0 4.0 (2.0) 10 10.62 5.2
formnovalidate 5.0 (in 6.0 only worked with HTML5 doctype, validation support in 7.0 was disabled and re-enabled in 10.0) 4.0 (2.0) 10 10.62 ?
formtarget 9.0 4.0 (2.0) 10 10.62 5.2
height 1.0 16.0 (16.0) ? 1.0 ?
incremental (Yes) 未实现 未实现 未实现 (Yes)
inputmode 未实现 未实现 未实现 未实现 未实现
list 20.0 4.0 (2.0) 10 9.6 未实现
max 5.0 16.0 (16.0) ? 10.62 ?
maxlength 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
min 5.0 16.0 (16.0) ? 10.62 ?
minlength 40.0 ? ? ? ?
multiple 1.0 (supported for type=file and type=email as of 5.0) 3.6 (1.9.2) for type=file
(Yes) for type=email
10 1.0 (10.62 support for type=file and as of 11.01 type=email) ?
name 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
pattern 5.0 4.0 (2.0) 10 9.6 未实现
placeholder 10.0 4.0 (2.0) 10 11.00 5.0
readonly 1.0 1.0 (1.7 or earlier) 6 (missing for type of checkbox, radio) 1.0 1.0
required 5.0 (support for select element as of 10) 4.0 (2.0) 10 9.6 未实现
size 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
spellcheck 10.0 3.6 (1.9.2) 10 11.0 4.0
src 1.0 1.0 (1.7 or earlier) 2 1.0 1.0
step 6.0 16.0 (16.0) 10 10.62 5.0
tabindex 1.0 1.0 (1.7 or earlier) 6 (elements with tabindex > 0 are not navigated) (Yes) ?
width 1.0 16.0 (16.0) ? 1.0 ?
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) 4.0 (2.0) (Yes) (Yes) (Yes)
type (Yes) (Yes) (Yes) (Yes) (Yes)
type=button (Yes) (Yes) (Yes) (Yes) (Yes)
type=checkbox (Yes) (Yes) (Yes) (Yes) (Yes)
type=color ? 27.0 (27.0) ? (Yes) ?
type=date 未实现 未实现 未实现 10.62 5.0
type=datetime 未实现 未实现 未实现 10.62 (Yes)
type=datetime-local 未实现 未实现 未实现 10.62 (Yes)
type=email ? 4.0 (2.0) ? (Yes) 3.1 (no validation but gives a specific keyboard)
type=file ? ? ? ? (Yes) [1]
type=hidden (Yes) (Yes) (Yes) (Yes) (Yes)
type=image (Yes) (Yes) (Yes) (Yes) (Yes)
type=month 未实现 未实现 未实现 10.62 (Yes)
type=number 2.3 (no validation but gives a specific keyboard) 29.0 (29.0) ? (Yes) 4.0 (no validation but gives a specific keyboard)
type=password (Yes) (Yes) (Yes) (Yes) (Yes)
type=radio (Yes) (Yes) (Yes) (Yes) (Yes)
type=range ? 未实现 ? (Yes) 5.0
type=reset (Yes) (Yes) (Yes) (Yes) (Yes)
type=search ? 4.0 (2.0) ? 10.62 4.0
type=submit (Yes) (Yes) (Yes) (Yes) (Yes)
type=tel 2.3 4.0 (2.0) ? 10.62 3.1
type=text (Yes) (Yes) (Yes) (Yes) (Yes)
type=time 未实现 未实现 未实现 10.62 (Yes)
type=url ? 4.0 (2.0) ? 10.62 3.1 (no validation but gives a specific keyboard)
type=week 未实现 未实现 未实现 10.62 (Yes)
accept=[MIME type] ? ? ? ? ?
accept=audio/* ? ? ? ? ?
accept=image/* ? ? ? ? ?
accept=video/* ? ? ? ? ?
accept=[. + ext] ? 37.0 (37.0) ? ? ?
accesskey ? ? ? ? ?
autocomplete ? 4.0 (2.0) (Yes) (Yes) (Yes)
autofocus 3.2 4.0 (2.0) ? (Yes) ?
checked (Yes) (Yes) (Yes) (Yes) (Yes)
disabled (Yes) 4.0 (2.0) (Yes) (Yes) (Yes)
form ? ? ? ? ?
formaction ? 4.0 (2.0) ? 10.62 5.0
formenctype ? ? ? ? ?
formmethod ? 4.0 (2.0) ? 10.62 5.0
formnovalidate ? 4.0 (2.0) ? 10.62 ?
formtarget ? 4.0 (2.0) ? 10.62 5.0
height ? 16.0 (16.0) ? ? ?
list 未实现 4.0 (2.0) ? (Yes) ?
max ? 16.0 (16.0) (UI might remain unimplemented) ? 10.62 ?
maxlength (Yes) 4.0 (2.0) (Yes) (Yes) (Yes)
min ? 16.0 (16.0) (UI might remain unimplemented) ? 10.62 ?
minlength ? ? ? ? ?
multiple ? (Yes) ? (Yes) ?
name (Yes) 4.0 (2.0) (Yes) (Yes) 1.0
pattern ? 4.0 (2.0) ? (Yes) (Yes)
placeholder 2.3 4.0 (2.0) ? 11.10 4
readonly (Yes) 4.0 (2.0) (Yes) (Yes) (Yes)
required ? (Yes) ? (Yes) ?
size (Yes) 4.0 (2.0) (Yes) (Yes) (Yes)
spellcheck ? 4.0 (2.0) ? 11.0 ?
src ? ? ? ? ?
step ? 16.0 (16.0) (UI might remain unimplemented) ? 10.62 ?
tabindex ? ? ? ? ?
width ? 16.0 (16.0) ? ? ?

[1]: File uploads were broken in Mobile Safari for iOS 8.0 and 8.0.1. The bug was fixed in iOs 8.0.2.

Safari Mobile for iOS applies a default style of opacity: 0.4 to disabled textual <input> elements. Other major browsers don't currently share this particular default style.

On Safari Mobile for iOS, setting display: block on an <input> of type="date", type="time", type="datetime-local", or type="month" causes the text within the <input> to become vertically misaligned.

As of Chrome v39, an <input type="date"> styled with display: table-cell; width: 100%; will have a min-width imposed by Chrome and it cannot become narrower than this minimum width. See Chromium bug #346051.

Gecko notes

Firefox will, unlike other browsers, by default, persist the dynamic disabled state and (if applicable) dynamic checkedness of an <input> across page loads. Setting the value of the autocomplete attribute to off disables this feature; this works even when the autocomplete attribute would normally not apply to the <input> by virtue of its type. See bug 654072.

Starting in Gecko 9.0 (Firefox 9.0 / Thunderbird 9.0 / SeaMonkey 2.6), 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 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 border on all <input type="file"> elements.

Localization

The allowed inputs for certain <input> types depend on the locale. In some locales, 1,000.00 is a valid number, while in other locales the valid way to enter this number is 1.000,00.

Firefox uses the following heuristics to determine the locale to validate the user's input (at least for type="number"):

  • Try the language specified by a 'lang'/'xml:lang' attribute on the element or any of its parents;
  • Try the language specified by any Content-Language HTTP header or
  • If none specified, use the browser's locale.

Gecko 备注

Image capture from cameras

Requires Gecko 9.0(Firefox 9.0 / Thunderbird 9.0 / SeaMonkey 2.6)

从Gecko 9.0 (Firefox 9.0 / Thunderbird 9.0 / SeaMonkey 2.6)开始,Firefox Android版允许用户使用手机的摄像头拍照并上传,且不需要浏览器以外的程序.想要使用这样的特性,Web开发者只需简单的将file类型的input元素的accept属性的值设置为 "image/*",像这样:

<input type="file" accept="image/*">

相关链接

文档标签和贡献者

 最后编辑者: AutumnFish,