El método de selección de hora de entrada() en HTML DOM se usa para seleccionar el contenido del campo de texto de hora.
Sintaxis:
timeObject.select()
Parámetros: No acepta ningún parámetro.
Valor devuelto: No devuelve ningún valor.
Ejemplo : este ejemplo utiliza el método de selección de tiempo de entrada() para seleccionar el contenido dentro del campo de tiempo.
HTML
<!DOCTYPE html> <html> <head> <title> DOM Input Time select() Method </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Time select() Method </h2> <label for="uname" style="color:green"> <b>Enter time</b> </label> <input type="time" id="gfg" name="Geek_time" value="18:00" placeholder="Enter time" step="5" min="16:00" max="22:00:" autofocus> <br> <p> <b> Click on the below Button to select the content of the Time field </b> </p> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="font-size:24px; color:green'"> </p> </center> <script> function geeks() { var link = document .getElementById("gfg").select(); } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA