La propiedad de valor de Tel de entrada DOM en HTML DOM se utiliza para establecer o devolver el valor de un atributo de valor del campo Tel de entrada. El atributo de valor especifica el valor inicial del campo Tel de entrada. Contiene el valor predeterminado o los tipos de usuario.
Sintaxis:
- Devuelve la propiedad value.
telObject.value
- Se utiliza para establecer la propiedad de valor.
telObject.value = number
Valor de propiedad: contiene un número de valor único que define el valor del campo de entrada tel.
Valor devuelto: Devuelve el valor numérico que representa el valor del campo tel.
Ejemplo: Este ejemplo ilustra cómo cambiar la propiedad del valor Input Tel.
HTML
<!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input Tel value Property </h2> <legend> Phone Number: <input type="tel" id="mytel" value="6753682635" autofocus> </legend> <br><br> <button onclick="change()"> change value </button> <p id="demo"></p> <script> function change() { var x = document.getElementById("mytel").value = "99773474883"; document.getElementById("demo").innerHTML = "The value of the phone number was cahanged to" + x; } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Internet Explorer 10.0 +
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA