我有一个包含两个文件上传字段的表单。当您正常使用 PHP 处理通过 HTML 上传的文件时,您会得到一个包含所有文件信息的$_FILES
数组,其中包含 、 等条目$_FILES['name']
。$_FILES['tmp_name']
我希望能够使用 jQuery 获取所有这些信息。如果$('[name="textfile1"]').val()
我上传. 有没有办法获取实际的信息数组?我有一堆文本输入字段以及文件上传字段,我希望能够通过 AJAX 调用一次传递所有信息。C:/fakepath/test.txt
test.txt
<form action="" method="post" enctype="multipart/form-data">
<div class="input">
<p>Upload the sitelist (.txt files only):</p>
<input style="margin-top:0;margin-bottom:6px" type="file" name="textfile1" /><br />
</div>
<div class="input">
<p>Upload the dictionary (.txt files only):</p>
<input style="margin-top:0;margin-bottom:6px" type="file" name="textfile2" /><br />
</div>
</form>