El método de entrada Tel blur() en HTML DOM se usa para extraer o eliminar el foco del campo tel cuando ocurre el evento.
Sintaxis:
telObject.blur()
Parámetros : este método no contiene ningún valor de parámetro.
Valor devuelto: No devuelve ningún valor.
Ejemplo: El siguiente programa ilustra el uso del método input tel blur() en HTML DOM.
HTML
<!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2>DOM Input Tel blur() method</h2> <legend> Phone Number: <input type="tel" id="mytel" value="6753682635"> </legend> <br><br> <button onclick="btnclick()"> Clear focus! </button> <script> function btnclick() { var x = document.getElementById("mytel").blur(); } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Firefox
- Borde
- Ópera
- safari de manzana
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA