|
|
The select element allows the selection of an option. The contained options can be directly accessed through the select element as a collection. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-SELECT"> SELECT element definition </a> in HTML 4.0.
| DOMString |
[const]
The type of control created.
| long |
[const]
The ordinal index of the selected option. The value -1 is returned if no element is selected. If multiple options are selected, the index of the first selected option is returned.
| void |
see selectedIndex
| DOMString |
[const]
The current form control value.
| void |
see value
| long |
[const]
The number of options in this <code> SELECT </code> .
| HTMLFormElement |
[const]
Returns the <code> FORM </code> element containing this control. Returns null if this control is not within the context of a form.
| HTMLCollection |
[const]
The collection of <code> OPTION </code> elements contained by this element.
| bool |
[const]
The control is unavailable in this context. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled"> disabled attribute definition </a> in HTML 4.0.
| void |
see disabled
| bool |
[const]
If true, multiple <code> OPTION </code> elements may be selected in this <code> SELECT </code> . See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-multiple"> multiple attribute definition </a> in HTML 4.0.
| void |
see multiple
| DOMString |
[const]
Form control or object name when submitted with a form. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-SELECT"> name attribute definition </a> in HTML 4.0.
| void |
see name
| long |
[const]
Number of visible rows. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-size-SELECT"> size attribute definition </a> in HTML 4.0.
| void |
see size
| long |
[const]
Index that represents the element's position in the tabbing order. See the <a href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex"> tabindex attribute definition </a> in HTML 4.0.
| void |
see tabIndex
| void |
Add a new element to the collection of <code> OPTION </code> elements for this <code> SELECT </code> .
Parameters:
| element | The element to add. |
| before | The element to insert before, or 0 for the tail of the list. |
| void |
Remove an element from the collection of <code> OPTION </code> elements for this <code> SELECT </code> . Does nothing if no element has the given index.
Parameters:
| index | The index of the item to remove. |
| void |
Removes keyboard focus from this element.
| void |
Gives keyboard focus to this element.
| Generated by: ssk@tauon.ph.unimelb.EDU.AU on Wed May 23 05:55:52 2001, using kdoc 2.0a35. |