ajax表單提交 同步上傳文件

前端之家收集整理的这篇文章主要介绍了ajax表單提交 同步上傳文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var form = new FormData(document.getElementById("friendshipCooperationFrom"));

$.ajax({
 url:"<%=basePath%>${action }",type:"post",data:form,processData:false,contentType:false,success:function(data){
   alert(data);
 },error:function(e){
   alert("错误!!");
 }
});


new FormData();

from表單無法序列化文件,使用FormData

原文链接:https://www.f2er.com/ajax/160739.html

猜你在找的Ajax相关文章