如何在HTML表单上上传多个文件

时间:2012-06-07 02:01:10

标签: html post file-upload

我原以为这会很容易找到关于互联网的答案,但显然不是。

在HTML页面上,我希望允许用户选择多个文件并将其上传到我的服务器。具体上下文是用户需要选择简历文件和封面页来申请工作。

重要注意事项:

  • 我对HTML5或Flash或棘手的解决方案不感兴趣 - 只是基本的问题,是否可以在普通的旧浏览器中使用普通的旧HTML。
  • 我可以使用多个上传字段和多个按钮来选择每个文件。
  • 单个提交按钮需要同时提交。
  • 需要支持IE6。

这可能吗?找到一个直接的答案似乎很难。

例如,像这样的工作? (我从网上的某个地方抓住它,如果我没有记入消息来源,那就很抱歉)

<form action="/py/uploadfile" method="post" enctype="multipart/form-data" name="form1" id="form1">
    <label>upload file<input type="file" name="file[]" id="file1" /></label>
    <label>upload file<input type="file" name="file[]" id="file2" /></label>
    <label>upload file<input type="file" name="file[]" id="file3" /></label>
    <label><input type="submit" name="button" id="button" value="Submit" /></label>
</form>

感谢

1 个答案:

答案 0 :(得分:2)

只需添加另一个input[type="file"],并确保其名称不同:

<form action="...">
    ...other fields...
    <input type="file" name="coverLetter" />
    <input type="file" name="resume" />
    ...other fields...
    <input type="submit" value="send" />
</form>