El método de selección de semana de entrada() en HTML DOM se usa para seleccionar el contenido del campo de la semana.
Sintaxis:
weekbject.select()
Parámetros: No acepta ningún parámetro.
Ejemplo: este ejemplo utiliza el método input week select() para seleccionar el campo de la semana.
HTML
<!DOCTYPE html> <html> <head> <title>HTML DOM Input Week select() Method</title> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h2>DOM Input Week Select() Method</h2> <form id="myGeeks"> <input type="week" id="week_id" name="geeks" autofocus> </form> <br> <button onclick="myGeeks()"> Click Here! </button> <p id="GFG" style="font-size:20px;"></p> <!-- Script to return the autofocus Property --> <script> function myGeeks() { var gfg = document.getElementById( "week_id").select(); } </script> </center> </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