我原以为这会很容易找到关于互联网的答案,但显然不是。
在HTML页面上,我希望允许用户选择多个文件并将其上传到我的服务器。具体上下文是用户需要选择简历文件和封面页来申请工作。
重要注意事项:
这可能吗?找到一个直接的答案似乎很难。
例如,像这样的工作? (我从网上的某个地方抓住它,如果我没有记入消息来源,那就很抱歉)
<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>
感谢
答案 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>