org.w3c.dom.html
public interface HTMLOptionElement extends HTMLElement
See also the Document Object Model (DOM) Level 1 Specification (Second Edition).
| Method Summary | |
|---|---|
| boolean | getDefaultSelected()
Represents the value of the HTML selected attribute. |
| boolean | getDisabled()
The control is unavailable in this context. |
| HTMLFormElement | getForm()
Returns the FORM element containing this control. |
| int | getIndex()
The index of this OPTION in its parent SELECT
, starting from 0. |
| String | getLabel()
Option label for use in hierarchical menus. |
| boolean | getSelected()
Represents the current state of the corresponding form control, in an
interactive user agent. |
| String | getText()
The text contained within the option element. |
| String | getValue()
The current form control value. |
| void | setDefaultSelected(boolean defaultSelected) |
| void | setDisabled(boolean disabled) |
| void | setLabel(String label) |
| void | setSelected(boolean selected) |
| void | setValue(String value) |
defaultSelected, however, resets the state of the form
control. See the selected attribute definition in HTML 4.0.FORM element containing this control. Returns
null if this control is not within the context of a
form.OPTION in its parent SELECT
, starting from 0.