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 = "text">
Valor de atributo: contiene texto de valor único que especifica el valor del elemento de entrada.
Ejemplo 1: este ejemplo describe el atributo de valor <input>.
<!DOCTYPE html> <html> <head> <title>HTML input value Attribute</title> </head> <body style = "text-align:center"> <h1 style = "color:green;"> GeeksforGeeks </h1> <h2> HTML input value Attribute </h2> Input: <input type = "text" value = "GeeksforGeeks"> </body> </html>
Producción:
Ejemplo 2: este ejemplo describe el atributo de valor <input>.
<!DOCTYPE html> <html> <head> <title>HTML input value Attribute</title> </head> <body style = "text-align:center"> <h1 style = "color:green;"> GeeksforGeeks </h1> <h2> HTML input value Attribute </h2> <input type = "button" value = "Submit"> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de valor <input> se enumeran a continuación:
- Apple Safari 1.0
- Google Chrome 1.0
- Firefox 1.0
- Ópera 1.0
- Internet Explorer 2.0
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA