El método Focus() de búsqueda de entrada en HTML DOM se usa para enfocar el campo de búsqueda de entrada cuando ocurre un evento.
Sintaxis:
searchObject.focus();
Parámetro: este método no contiene ningún valor de parámetro.
Valor devuelto: No devuelve ningún valor.
Ejemplo: El siguiente ejemplo ilustra el uso del método Input search focus() en HTML DOM.
HTML
<!DOCTYPE html> <html> <head> <title> Input Search Focus() Method </title> <style> h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h3>Input Search Focus() Method</h3> <form id="myGeeks"> <input type="Search" id="test" name="myGeeks" placeholder="Type to search.." value="GeeksforGeeks" autofocus> </form> <br><br> <button onclick="Focus()"> Get Focus </button> <script> function Focus() { var s = document.getElementById("test").focus(); } </script> </body> </html>
Producción:
Navegador compatible:
- Google Chrome 1.0
- Ópera 8.0
- Internet Explorer 5.5
- Microsoft Edge 12.0
- Safari 3.0
- Firefox 1.5
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA