H5 ajax递交带有file的form表单
发布时间:2020-12-16 03:34:22 所属栏目:百科 来源:网络整理
导读:HTML+js: $(".class").change(function () { var id = $(this).attr("id"); console.debug("id:" + id); var formData = new FormData(); var name = $(this).val(); formData.append("img",$(this)[0].files[0]); formData.append("id",id); $.ajax({ url:
HTML+js: $(".class").change(function () { var id = $(this).attr("id"); console.debug("id:" + id); var formData = new FormData(); var name = $(this).val(); formData.append("img",$(this)[0].files[0]); formData.append("id",id); $.ajax({ url: "xxx/pic",type: 'POST',data: formData,// 告诉jQuery不要去处理发送的数据 processData: false,// 告诉jQuery不要去设置Content-Type请求头 contentType: false,beforeSend: function () { console.log("正在进行,请稍候"); },success: function (responseStr) { },error: function (responseStr) { console.log("error"); } }); }); <tr> <td> <span class="putfile"> <@shiro.hasPermission name="xxx" > <form action="xxxx/pic" enctype="multipart/form-data"> <input name="${ap_index}" type="file" id="${ap.id}" class="class" style="height: 22px;width: 30px;"> </form> <@netCommon.pageBtn url="null" type="info" title="上传图片" icon="photo" /> </@shiro.hasPermission> </span> </td> </tr> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |