El HTML <input type=”hidden”> se utiliza para definir un campo Oculto de entrada. Un campo oculto también incluye aquellos datos que los usuarios no pudieron ver o modificar cuando enviaron el formulario. Un campo oculto solo almacena los registros de la base de datos que deben actualizarse al enviar el formulario.
Sintaxis:
<input type="hidden">
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML input type hidden </title> <style> h1 { color: green; } body { text-align: center; } </style> </head> <body> <h1> GeeksforGeeks </h1> <h3> HTML <input type = "hidden"> </h3> <form action="#"> <input type="hidden" id="myFile" value="1234"> Name: <input type="text"> <input type="submit" value="Submit"> </form> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con <input type=”hidden”> se enumeran a continuación:
- Google Chrome 1.0 y superior
- Borde 12.0 y superior
- explorador de Internet
- Firefox 1.0 y superior
- Safari 1.0 y superior
- Ópera 2.0 y superior
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA