直接上代碼:
html代碼php
<!doctype html>
<html lang="zh">
<head>
<meta charset="utf-8">
<title>多文件上傳</title>
<script src="jquery.js"></script>
<script>
$(function(){
$("#btn").click(function(){
var formData = new FormData();
for(var i=0; i<$('#file')[0].files.length;i++){
formData.append('file[]', $('#file')[0].files[i]);
}
$.ajax({
url: "test.php",
type: "POST",
processData: false,
contentType: false,
data: formData,
success: function(d){html
}
});jquery
});ajax
})app
</script>
</head>
<body>
<form>
<input type="file" multiple id="file" name="file[]" >
<input type="button" id="btn" value="提交"/>
</form>
</body>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
test.php代碼:url
<?php
var_dump($_FILES);die();.net
具體上傳代碼相信都已經知道.
---------------------
做者:鄧紫棋的小粉絲
來源:CSDN
原文:https://blog.csdn.net/u010957293/article/details/73369322
版權聲明:本文爲博主原創文章,轉載請附上博文連接!orm