如何使用 HTML 创建文件上传按钮?
要使用 HTML 创建文件上传按钮,代码如下 −
示例
<!DOCTYPE html> <html> <head> <h1>File upload button example</h1> <p>Click on the "Choose File" button to upload a file:</p> <form> <input type="file" id="FILE" name="filename"> </form> </body> </html>
输出
以上代码将产生以下输出 −
单击“选择文件”按钮 −
广告