1

我原以为这会非常容易在互联网上找到答案,但显然不是。

在 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>

谢谢

4

1 回答 1

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>
于 2012-06-07T02:03:45.320 回答