HTMLOptionElement
The HTMLOptionElement interface represents <option> elements and inherits all classes and methods of the HTMLElement interface.
Properties
Inherits properties from its parent, HTMLElement.
HTMLOptionElement.defaultSelected-
Is a
Booleanthat contains the initial value of theselectedHTML attribute, indicating whether the option is selected by default or not. HTMLOptionElement.disabled-
Is a
Booleanrepresenting the value of thedisabledHTML attribute, which indicates that the option is unavailable to be selected. An option can also be disabled if it is a child of an<optgroup>element that is disabled. HTMLOptionElement.form읽기 전용-
Is a
HTMLFormElementrepresenting the same value as theformof the corresponding<select>element, if the option is a descendant of a<select>element, or null if none is found. HTMLOptionElement.index읽기 전용-
Is a
longrepresenting the position of the option within the list of options it belongs to, in tree-order. If the option is not part of a list of options, like when it is part of the<datalist>element, the value is0. HTMLOptionElement.label읽기 전용-
Is a
DOMStringthat reflects the value of thelabelHTML attribute, which provides a label for the option. If this attribute isn't specifically set, reading it returns the element's text content. HTMLOptionElement.selected-
Is a
Booleanthat indicates whether the option is currently selected. HTMLOptionElement.text-
Is a
DOMStringthat contains the text content of the element. HTMLOptionElement.value-
Is a
DOMStringthat reflects the value of thevalueHTML attribute, if it exists; otherwise reflects value of theNode.textContentproperty.
Methods
Inherits methods from its parent, HTMLElement.
- Option()
-
Is a constructor creating an
HTMLOptionElementobject. It has four values: the text to display,text, the value associated,value, the value ofdefaultSelected, and the value ofselected. The last three values are optional.
명세서
| Specification |
|---|
| HTML Standard # htmloptionelement |
브라우저 호환성
BCD tables only load in the browser
See also
- The HTML element implementing this interface:
<option>.