html代码
<input id="load" type="file" onchange="upload(this.files)" multiple/>
js代码
function upload(files){
console.log(files);
$.ajax({
type: 'post',
url: "download.php",
data: {
files:files,
},
dataType: "json",
success: function(data) {
if(data.status){
alert(data.msg);
return false;
}else{
alert(data.msg);
return false;
}
}
});
}
但是我console.log 不能打印出file,实在是不知道怎么获取file的属性
你这个可以console出来的,只是上传写得有问题,不能直接ajax上传,应该用formdata上传