Este atributo es un atributo booleano. Especifica que el usuario puede seleccionar más de un valor que se presenta en un elemento.
Sintaxis:
<input/select multiple>
Elementos: este método puede tener los siguientes atributos:
Atributo: el atributo para cada uno de los elementos anteriores es múltiple .
Ejemplo: Con elemento <input>
html
<!DOCTYPE html> <html> <body> <center> <h1 style="color:green;font-style:italic;"> GeeksForGeeks </h1> <h2 style="color:green;font-style:italic;"> multiple Attribute in Input Element </h2> <form action=" "> Select images: <input type="file" name="img" multiple> <input type="submit"> </form> </center> </body> </html>
Producción:
Ejemplo: con el elemento <select>
html
<html> <body> <center> <h1 style="color:green;font-style:italic;"> Geeksforgeeks </h1> <h2 style="font-style:italic;color:green;"> multiple Attribute in Select Element </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: los navegadores compatibles con múltiples atributos se enumeran a continuación:
- Google Chrome 6.0
- Internet Explorer 10.0
- Firefox 3.6
- Ópera 11.0
- Safari 5.0
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA