El atributo HTML <select> multiple es un atributo booleano. Especifica que el usuario puede seleccionar más de un valor que se presenta en el elemento <select>.
Sintaxis:
<select multiple>
Ejemplo:
html
<html> <body> <center> <h1 style="color:green; font-style:italic;"> Geeksforgeeks </h1> <h2 style="font-style:italic; color:green;"> HTML select multiple Attribute </h2> <form action=" "> <select name="Bikes" multiple> <option value="HeroHonda">HeroHonda</option> <option value="Splender">Splender</option> <option value="Ninja">Ninja</option> <option value="Pulsav">Pulsav</option> </select> <input type="submit"> </form> <p>Hold down the Ctrl (windows) / Command (Mac) button to select multiple options.</p> </center> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Borde 12 y superior
- Firefox 1 y superior
- explorador de Internet
- Ópera
- safari de manzana
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA