我将使用一个 javascript 函数来执行添加/附加文件的输入类型与数组,但是当我使用 print_r() 来确定数组是否正好在索引中时,它显示只包含一个数组索引.示例输出如下:
Array
(
[name] => Array
(
[0] => 20130112891.jpg
)
[type] => Array
(
[0] => image/jpeg
)
[tmp_name] => Array
(
[0] => C:\xampp\tmp\php3BEA.tmp
)
[error] => Array
(
[0] => 0
)
[size] => Array
(
[0] => 209825
)
下面的 HTML 代码和 javascript 显示了添加/附加文件数组的位置:
<tr>
<th class="title">Image</th>
<td>:</td>
<th><input type="file" name="image[]"></th>
</tr>
<script type="text/javascript">
$(document).ready(function(){
$("#addbtn").click(function(){
$("#tb tr:last th:last").append("<input type=file name=image[]>");
});
});
</script>
附加文件输入后的示例输出