Dropdown In Jsp W3schools Code Example


Example: html create drop down list


<html>
<head>
<title>Selection Inputs</title>
</head>
<body>
<form>
<label for="selector"> <!-- Can add label if want -->
<p>A "select" element allows users to input from a selection:</p>
<select id="selector"> <!-- Use "select" to create object -->
<option>Option 1</option> <!-- Add all applicable options -->
<option>Option 2</option>
<option selected>Option 3</option> <!-- add selected to change default from first option -->
<optgroup label="Group"> <!-- To create nested options for categories use "optgroup" -->
<option>Option 4</option>
<option>Option 5</option>
</select>
</label>
</form>
</body>
</html>

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable