El método Input Date select() en HTML DOM se utiliza para seleccionar el contenido del campo de texto Fecha. Es el método predefinido del objeto Fecha de entrada.
Sintaxis:
dateObject.select()
Parámetro: este método no contiene ningún parámetro.
Valores devueltos: No devuelve ningún valor.
Ejemplo: el siguiente ejemplo ilustra el uso del método Input select() en HTML DOM.
HTML
<!DOCTYPE html> <html> <head> <title>HTML DOM Input Date select() Method</title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Input Date select() Method</h2> <br> <input type="date" id="test_Date" autofocus> <p> To select the content of the Date Field, double click the "Check me!" button. </p> <button ondblclick="My_selectDate()"> Check me! </button> <script> function My_selectDate() { var d = document.getElementById( "test_Date").select(); } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Ópera
- Firefox
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA