From http://www.w3schools.com (Copyright Refsnes Data)
ExampleCreate a select list with four options:
|
The <select> tag is used to create a select list (drop-down list).
The <option> tags inside the select element define the available options in the list.
The <select> tag is supported in all major browsers.
NONE
Tip: The select element is a form control and can be used in a form to
collect user input.
DTD indicates in which DTD the attribute is allowed. S=Strict, T=Transitional, and F=Frameset.
Attribute | Value | Description | DTD |
---|---|---|---|
disabled | disabled | Specifies that a drop-down list should be disabled | STF |
multiple | multiple | Specifies that multiple options can be selected | STF |
name | name | Specifies the name of a drop-down list | STF |
size | number | Specifies the number of visible options in a drop-down list | STF |
id, class, title, style, dir, lang, xml:lang, accesskey, tabindex |
For a full description, go to Standard Attributes.
onfocus, onblur, onchange |
For a full description, go to Event Attributes.
From http://www.w3schools.com (Copyright Refsnes Data)