El método input tel focus() en HTML DOM se usa para enfocar un campo input tel cuando ocurre el evento.
Sintaxis:
telObject.focus()
Parámetros: este método no acepta ningún valor de parámetro.
Valor devuelto: este método no devuelve ningún valor.
Ejemplo: El siguiente código HTML ilustra el uso del método input tel focus() .
HTML
<!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> DOM Input Tel focus() method </h2> <legend> Phone Number: <input type="tel" id="mytel" value="6753682635"> </legend> <br><br> <button onclick="btnclick()"> Click Here! </button> <script> function btnclick() { var x = document.getElementById("mytel").focus(); } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Borde
- 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