El HTML <input type=”datetime-local”> se utiliza para definir un control de fecha y hora. El valor debe incluir el año, mes, día y hora.
Sintaxis:
<input type="datetime-local">
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML input type datetime-local </title> <style> h1 { color: green; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2> HTML <input type = "datetime-local"></h2> <br> Date Of Birth: <input type="datetime-local" id="Test_DatetimeLocal"> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con <input type=”datetime-local”> se enumeran a continuación:
- Google Chrome 20.0
- Internet Explorer 13.0
- Ópera 10.1
- Firefox 93.0
- Safari 14.1
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA