La propiedad de valor de texto de entrada en HTML DOM se usa para establecer o devolver el valor de un atributo de valor del campo de entrada. El atributo de valor especifica el valor inicial del campo de texto de entrada. Contiene el valor predeterminado o los tipos de usuario.
Sintaxis:
- Devuelve la propiedad de valor de texto de entrada.
textObject.value
- Se utiliza para establecer la propiedad de valor de texto de entrada.
textObject.value = text
Valor de propiedad: contiene texto de valor único que define el valor del campo de texto de entrada.
Valor devuelto: Devuelve el valor de string que representa el valor del campo de texto.
Ejemplo 1: este ejemplo ilustra cómo devolver la propiedad de valor de texto de entrada.
html
<!DOCTYPE html> <html> <head> <title> HTML DOM Input Text value Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Text value Property</h2> <input type="text" id="text_id" value="Hello Geeks!"> <button onclick="myGeeks()">Click Here!</button> <p id="GFG"></p> <!-- Script to return the Input Text value Property--> <script> function myGeeks() { var txt = document.getElementById("text_id").value; document.getElementById("GFG").innerHTML = txt; } </script> </body> </html>
Salida:
antes de hacer clic en el botón:
Después de hacer clic en el botón:
Ejemplo 2: este ejemplo ilustra cómo establecer la propiedad de valor de texto de entrada.
html
<!DOCTYPE html> <html> <head> <title> HTML DOM Input Text value Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Text value Property</h2> <input type="text" id="text_id" value="Hello Geeks!"> <button onclick="myGeeks()">Click Here!</button> <p id="GFG" style="font-size:20px;"></p> <!-- Script to set Input Text value Property--> <script> function myGeeks() { var txt = document.getElementById("text_id").value = "GeeksForGeeks"; document.getElementById("GFG").innerHTML = "The value of the value attribute " + "was changed to : " + txt; } </script> </body> </html>
Salida:
antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con la propiedad de valor de texto de entrada DOM se enumeran a continuación:
- Google Chrome
- explorador de Internet
- 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