El HTML <input type=”month”> se utiliza para especificar el control del campo mes y año. El valor debe tener el formato “YYYY-MM”.
Sintaxis:
<input type="month">
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title> HTML input type month </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>HTML <Input type ="month"></h2> <form id="myGeeks"> <input type="month" id="month_id" name="geeks" > </form> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con <input type=”month”> se enumeran a continuación:
- Google Chrome 20.0 y superior
- Borde 12.0 y superior
- Ópera 11 y superior
- Firefox no es compatible
- Internet Explorer no es compatible
- Safari no compatible
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA