我相信您可以这样做:
var fd = new FormData(); fd.append( 'file', input.files[0] );$.ajax({ url: 'http://example.com/script.php', data: fd, processdata: false, contentType: false, type: 'POST', success: function(data){ alert(data); }});
笔记:
processData为
false可以防止jQuery自动将数据转换为查询字符串。有关更多信息,请参阅文档。
设置
contentType to false为当务之急,因为否则jQuery 会错误地设置它。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)