El atributo múltiple HTML <input> es un atributo booleano. Especifica que el usuario puede seleccionar más de un valor que se presenta en un elemento. Los atributos múltiples funcionan con muchos campos de entrada, como correo electrónico, archivo, etc.
Sintaxis:
<input multiple>
Ejemplo:
<!DOCTYPE html> <html> <body> <center> <h1 style="color:green;font-style:italic;"> GeeksForGeeks </h1> <h2 style="color:green;font-style:italic;"> HTML input multiple Attribute </h2> <form action=" "> Select images: <input type="file" name="img" multiple> <input type="submit"> </form> </center> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 6.0
- Firefox 3.6
- Borde 10.0
- Ópera 11.0
- Apple 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