要在form表单中添加文件上传功能,可以使用input元素的type属性设置为file。以下是一个简单的例子:
<form action="/upload" method="post" enctype="multipart/form-data">
<label for="file">选择文件:</label>
<input type="file" id="file" name="file">
<button type="submit">上传文件</button>
</form>
在上面的示例中,form表单的enctype属性设置为multipart/form-data,这是必须的,以便支持文件上传功能。input元素的type属性设置为file,这样用户就可以选择要上传的文件。当用户提交表单时,选定的文件将被上传到指定的服务器端处理程序(在action属性中指定)。