Line 19: | Line 19: | ||
===Parameters=== | ===Parameters=== | ||
<code><nowiki><select><input type="option"></input></select></nowiki></code> | <code><nowiki><select><input type="option"></input></select></nowiki></code> | ||
+ | |||
+ | You can also use placeholder to have an extra, non-selectable item with a suggestion. See example 1. | ||
All other valid HTML5 attributes are allowed | All other valid HTML5 attributes are allowed | ||
Line 25: | Line 27: | ||
<p>Select a car:</p> | <p>Select a car:</p> | ||
<div> | <div> | ||
− | <select name="car"> | + | <select name="car" placeholder="Choose a car"> |
<input type="option" value="volvo">Volvo</input> | <input type="option" value="volvo">Volvo</input> | ||
<input type="option" value="saab">Saab</input> | <input type="option" value="saab">Saab</input> | ||
Line 32: | Line 34: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
<div> | <div> | ||
− | <select name="car"> | + | <select name="car" placeholder="Choose a car"> |
<input type="option" value="volvo">Volvo</input> | <input type="option" value="volvo">Volvo</input> | ||
<input type="option" value="saab">Saab</input> | <input type="option" value="saab">Saab</input> |
Revision as of 08:53, 17 February 2023
Name
select (dropdown)
Type
select
Synopsis
How to use select with option fields to create a dropdown input
Description
The select
element is used to create a drop-down list.
The name
attribute is needed to reference the form data after the form is submitted (if you omit the name
attribute, no data from the drop-down list will be submitted).
The id
attribute is needed to associate the drop-down list with a label.
The <input type="option"></input>
tags inside the <select>
element define the available options in the drop-down list.
Instead of option inputs, it's also possible to use selected
and options
as attributes of the select element. In this case options
should contain a comma-separated list of options and selected
can be used to specify which option should be selected.
Parameters
<select><input type="option"></input></select>
You can also use placeholder to have an extra, non-selectable item with a suggestion. See example 1.
All other valid HTML5 attributes are allowed
Example
<p>Select a car:</p>
<div>
<select name="car" placeholder="Choose a car">
<input type="option" value="volvo">Volvo</input>
<input type="option" value="saab">Saab</input>
</select>
</div>
<label for="dino-select">Choose a dinosaur:</label>
<select id="dino-select">
<optgroup label="Theropods">
<input type="option" value="Tyrannosaurus">Tyrannosaurus</input>
<input type="option" value="Velociraptor">Velociraptor</input>
<input type="option" value="Deinonychus">Deinonychus</input>
</optgroup>
<optgroup label="Sauropods">
<input type="option" value="Diplodocus">Diplodocus</input>
<input type="option" value="Saltasaurus">Saltasaurus</input>
<input type="option" value="Apatosaurus">Apatosaurus</input>
</optgroup>
</select>
<select name="Test" selected="C" options="A,B,C,D,E" />