En este artículo, estableceremos el valor de un elemento de entrada usando HTML. El atributo de valor para el elemento <input> en HTML se usa para especificar el valor inicial del elemento de entrada. Tiene un significado diferente para diferentes tipos de entrada:
- La propiedad «botón», «restablecer» y «enviar» especifica el texto en el botón.
- La propiedad «texto», «contraseña» y «oculto» especifica el valor inicial del campo de entrada.
- La propiedad «casilla de verificación», «radio» e «imagen» especifica el valor asociado con la entrada.
Sintaxis:
<input value = "value">
Valor de atributo: contiene texto de valor único que especifica el valor del elemento de entrada.
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <head> <title> How to specify the value of an input element using HTML? </title> </head> <body style="text-align:center"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> How to specify the value of an input element using HTML? </h2> Input Value: <input type="text" value="GeeksforGeeks"> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <head> <title> How to specify the value of an input element using HTML? </title> </head> <body style="text-align:center"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2> How to specify the value of an input element using HTML? </h2> <input type="button" value="Submit"> </body> </html>
Producción: