jquery ajax 多个上传标签
我可以找到很多插件,允许我使用一个 html 输入标签来上传多个文件,但我想要的是文件有多个 html 输入标签,但只有一个 ajax 调用。
我可以只使用一次 ajax 调用来上传文件吗?
这是我的 html 的示例:
<fieldset>
<legend>test Files</legend>
<label for="testFile">Test File
<span class="small">Change the test file.</span></label>
<input name="testFile" type="file"/>
<label for="iconFile">Test Icon File
<span class="small">Change the test icon.</span></label>
<input name="iconFile" type="file"/>
<label for="featuredFile">Test Featured File
<span class="small">Change the test featured.</span></label>
<input name="featuredFile" type="file"/>
</fieldset>
I can find a lot of plugins that allow me to use one html input tag to upload multiple files but I want is to have multiple html input tags for the files but only one ajax call.
Can I have only one ajax call for uploading the files?
Here is an example of my html:
<fieldset>
<legend>test Files</legend>
<label for="testFile">Test File
<span class="small">Change the test file.</span></label>
<input name="testFile" type="file"/>
<label for="iconFile">Test Icon File
<span class="small">Change the test icon.</span></label>
<input name="iconFile" type="file"/>
<label for="featuredFile">Test Featured File
<span class="small">Change the test featured.</span></label>
<input name="featuredFile" type="file"/>
</fieldset>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
他们都可以调用相同的函数来上传文件。
They could all call the same function that then uploads the file.
我正在使用 Valmus ajax upload 它允许选择多个文件并通过 ajax 上传它们。
I'm using Valmus ajax upload which allows the selection of multiple files and uploading them via ajax.