El atributo de aceptación <form> en HTML se utiliza para especificar el tipo de archivo que acepta el servidor. Este atributo solo se puede usar con el elemento <input type=”file”> . Este atributo no se usa para la herramienta de validación porque las cargas de archivos deben validarse en el servidor.
Sintaxis:
<form accept = "file_type";>
Valores de atributos:
- file_type: puede contener uno o más tipos de archivos que se pueden enviar/cargar en el servidor. Se puede agregar más de un archivo y separarlos con una coma.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML form accept attribute </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksForGeeks</h1> <h2> HTML Form accept attribute </h2> <form action=" "accept="image/*"> <input type="file" name="picture"> <input type="submit"> </form> </body> </html>
Producción:
Navegadores compatibles: este atributo no es compatible con ningún navegador.
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA