What is "html-select"
Example of a select
:
<select name="selectTeste">
<option value="v1">Primeiro</option>
<option value="v2" selected>Segundo</option>
<option value="v3">Terceiro</option>
</select>
The select can be accessed by your name (selectTeste); the second option will initially be loaded as selected (marked with selected
) worthwhile "v2".
Related Links: