HTMLFormElement object: Returns a reference to the parent form element.
formAction
string: Returns / Sets the element's formaction attribute, containing the URI of a program that processes information submitted by the element. This overrides the action attribute of the parent form.
formEncType
string: Returns / Sets the element's formenctype attribute, containing the type of content that is used to submit the form to the server. This overrides the enctype attribute of the parent form.
formMethod
string: Returns / Sets the element's formmethod attribute, containing the HTTP method that the browser uses to submit the form. This overrides the method attribute of the parent form.
formNoValidate
boolean: Returns / Sets the element's formnovalidate attribute, indicating that the form is not to be validated when it is submitted. This overrides the novalidate attribute of the parent form.
formTarget
string: Returns / Sets the element's formtarget attribute, containing a name or keyword indicating where to display the response that is received after submitting the form. This overrides the target attribute of the parent form.
name
string: Returns / Sets the element's name attribute, containing a name that identifies the element when submitting the form.
type
string: Returns / Sets the element's type attribute, indicating the type of control to display. See type attribute of <input> for possible values.
disabled
boolean: Returns / Sets the element's disabled attribute, indicating that the control is not available for interaction. The input values will not be submitted with the form. See also readonly
autofocus
boolean: Returns / Sets the element's autofocus attribute, which specifies 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. It cannot be applied if the type attribute is set to hidden (that is, you cannot automatically set focus to a hidden control).
required
boolean: Returns / Sets the element's required attribute, indicating that the user must fill in a value before submitting a form.
value
string: Returns / Sets the current value of the control.Note: If the user enters a value different from the value expected, this may return an empty string.
validityRead only
ValidityState object: Returns the validity state that this element is in.
validationMessageRead only
string: Returns a localized message that describes the validation constraints that the control does not satisfy (if any). This is the empty string if the control is not a candidate for constraint validation (willvalidate is false), or it satisfies its constraints.
willValidateRead only
Boolean: Indicates whether the element is a candidate for constraint validation. It is false if any conditions bar it from constraint validation.
checked
boolean:Returns / Sets the current state of the element when type is checkbox or radio.
defaultChecked
boolean: Returns / Sets the default state of a radio button or checkbox as originally specified in HTML that created this object.
indeterminate
boolean: indicates that the checkbox is neither on nor off.
alt
string: Returns / Sets the element's alt attribute, containing alternative text to use when type is image.
height
string: Returns / Sets the element's height attribute, which defines the height of the image displayed for the button, if the value of type is image.
src
string: Returns / Sets the element's src attribute, which specifies a URI for the location of an image to display on the graphical submit button, if the value of type is image; otherwise it is ignored.
width
string: Returns / Sets the document's width attribute, which defines the width of the image displayed for the button, if the value of type is image.
accept
string: Returns / Sets the element's accept attribute, containing comma-separated list of file types accepted by the server when type is file.
allowdirs非標準
boolean: Part of the non-standard Directory Upload API; indicates whether or not to allow directories and files both to be selected in the file list. Implemented only in Firefox and is hidden behind a preference.
Array of FileSystemEntry (en-US) objects describing the currently-selected files or directories.
autocomplete
string: Returns / Sets the element's autocomplete attribute, indicating whether the value of the control can be automatically completed by the browser. Ignored if the value of the type attribute is hidden, checkbox, radio, file, or a button type (button, submit, reset, image). Possible values are: "on": the browser can autocomplete the value using previously stored value "off": the user must explicity enter a value
maxLength
long: Returns / Sets the element's maxlength attribute, containing the maximum length of characters (in Unicode code points) that the value can have. (If you set this to a negative number, an exception will be thrown.)
size
unsigned long: Returns / Sets the element's size attribute, containing size of the control. This value is in pixels unless the value of type is text or password, in which case, it is an integer number of characters. Applies only when type is set to text, search, tel, url, email, or password; otherwise it is ignored.
pattern
string: Returns / Sets the element's pattern attribute, containing a regular expression that the control's value is checked against. 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
string: Returns / Sets the element's placeholder attribute, containing 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.
readOnly
boolean: Returns / Sets the element's readonly attribute, indicating that the user cannot modify the value of the control. This is ignored if the value of the type attribute is hidden, range, color, checkbox, radio, file, or a button type.
min
string: Returns / Sets the element's min attribute, containing the minimum (numeric or date-time) value for this item, which must not be greater than its maximum (max attribute) value.
max
string: Returns / Sets the element's max attribute, containing the maximum (numeric or date-time) value for this item, which must not be less than its minimum (min attribute) value.
selectionStart
unsigned long: Returns / Sets the beginning index of the selected text. When nothing is selected, this returns the position of the text input cursor (caret) inside of the <input> element.
selectionEnd
unsigned long: Returns / Sets the end index of the selected text. When there's no selection, this returns the offset of the character immediately following the current text input cursor position.
selectionDirection
string: Returns / Sets the direction in which selection occurred. Possible values are: "forward" if selection was performed in the start-to-end direction of the current locale, "backward" for the opposite direction, "none" if the direction is unknown."
Properties not yet categorized
defaultValue
string: Returns / Sets the default value as
originally specified in the HTML that created this object.
dirName
string: Returns / Sets the directionality of the
element.
accessKey
string: Returns a string containing a single
character that switches input focus to the control when pressed.
listRead only
HTMLElement object:
Returns the element pointed by the
[`list`](/zh-TW/docs/Web/HTML/Element/input#list) attribute. The property
may be null if no HTML element found in the same tree.
multiple
boolean: Returns / Sets the element's
[`multiple`](/zh-TW/docs/Web/HTML/Element/input#multiple) attribute,
indicating whether more than one value is possible (e.g., multiple
files).
filesRead only
FileList array: Returns
the list of selected files.
labelsRead only
NodeList array: Returns a
list of <label> (en-US) elements that are labels
for this element.
step
string: Returns / Sets the element's
[`step`](/zh-TW/docs/Web/HTML/Element/input#step) attribute, which works
with[`min`](/zh-TW/docs/Web/HTML/Element/input#min) and
[`max`](/zh-TW/docs/Web/HTML/Element/input#max) 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 is not set
to any, the control accepts only values at multiples of the
step value greater than the minimum.
valueAsDate
Date object: Returns / Sets
the value of the element, interpreted as a date, or null if
conversion is not possible.
valueAsNumber
double: Returns the value of the element, interpreted as
one of the following, in order:
a time value
a number
NaN if conversion is impossible
autocapitalize實驗性質
string: defines the capitalization behavior for
user input. Valid values are none, off,
characters, words, or sentences.
Selects a range of text in the element (but does not focus it). The optional selectionDirection parameter may be "forward" or "backward" to establish the direction in which selection was set, or "none" if the direction is unknown or not relevant. The default is "none". Specifying a selectionDirection parameter sets the value of the selectionDirection property.
setRangeText()
Selects a range of text in the element (but does not focus it). The optional selectionDirection parameter may be "forward" or "backward" to establish the direction in which selection was set, or "none" if the direction is unknown or not relevant. The default is "none". Specifying a selectionDirection parameter sets the value of the selectionDirection property.
setCustomValidity()
Sets a custom validity message for the element. If this message is not the empty string, then the element is suffering from a custom validity error, and does not validate.
checkValidity()
Returns a Boolean that is false if the element is a candidate for constraint validation, and it does not satisfy its constraints. In this case, it also fires an invalid (en-US) event at the element. It returns true if the element is not a candidate for constraint validation, or if it satisfies its constraints.
Decrements the value by (step n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception: if the method is not applicable to for the current type value,
Increments the value by (step n), where n defaults to 1 if not specified. Throws an INVALID_STATE_ERR exception: if the method is not applicable to for the current type value.,
Sets the files selected on the input to the given array of File objects. This is an alternative to mozSetFileNameArray() which can be used in frame scripts: a chrome script can open files as File objects and send them via message manager.