在 HTML 中设置服务器接受的文件类型
使用 HTML 中的 accept 属性设置服务器接受的文件类型。仅将该属性与 <input type = "file"> 一起使用。
示例
可以尝试运行以下代码以使用 accept 属性 −
<!DOCTYPE html> <html> <head> <title>File Upload Box</title> </head> <body> <form> <input type = "file" name = "fileupload" accept = "image/*" /> </form> </body> </html>
广告