El método input tel select() en HTML DOM se usa para seleccionar el contenido del campo input tel . Es un método incorporado del objeto tel de entrada.
Sintaxis:
telObject.select()
Parámetros: este método no acepta ningún parámetro.
Valor devuelto: este método no devuelve ningún valor.
Ejemplo : A continuación, el código HTML ilustra el uso del método input tel select() en HTML DOM.
HTML
<!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> DOM Input Tel select() Method </h2> <legend> Phone Number: <input type="tel" id="mytel" value="6753682635" autofocus> </legend> <br><br> <button onclick="select()"> Select </button> <script> function select() { var x = document.getElementById("mytel").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