El HTML <input type=”date”> se utiliza para definir un selector de fecha o un campo de control . El valor será el año, mes y día.
Sintaxis:
<input type="date">
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>HTML Input type = "Date" </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML <input type="date"></h2> <input type="date" id="test" value="2019-07-02T25:32Z"> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 20.0 y superior
- Firefox 57.0 y superior
- Borde 12.0 y superior
- Ópera 11 y superior
- Apple Safari 14.1 y superior
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA