在此记录下:
正常情况下我们的data:$(‘#form‘).serialize(),但是这个只是序列化了表单的数据,不带上file文件,并且,我们需要使用原生的JS获取form( document.getElementById),这和JQ的$(‘#form‘) 获取到的对象的节点不一样
var formData = new FormData(document.getElementById(form)); $.ajax({ type: "post", url: href, data: formData, dataType: "json", async: true, cache: false, processData: false, contentType: false, success: function (result) { if (result) { if (result.IsSuccess == true) { $(‘#‘ + modal).modal(‘hide‘);
感谢:
https://www.cnblogs.com/wei-dong/p/7570624.html