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的属性
添加回答
举报
0/150
提交
取消