码迷,mamicode.com
首页 > Web开发 > 详细

ajax提交文件

时间:2020-04-21 15:24:52      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:multipart   else   return   pdf   document   xmlhttp   style   ror   ret   

$("#file").off("change").on("change",function(){
var inputFile = $(‘#file‘).get(0).files[0];
if(inputFile && (inputFile.name.endsWith("doc") || inputFile.name.endsWith("docx"))){
$("#span").html(inputFile.name);
}else{
window.wxc.xcConfirm("请上传word文件!", "error");
return ;
}
});

<form id="addForm" class="form-horizontal" enctype="multipart/form-data">
<input type="file" accept="application/pdf" id="file" name="file" style="display:none">
</form>
$("#BA_Btn").click(function(){
var s=$("#span").html();
var form = new FormData(document.getElementById("addForm"));
$.ajax({
type: "POST",
url: "<%=basePath%>backend/sjxq/add",
data: form,
async: false,
processData: false,
contentType: false,
success: function (result) {
window.history.back();
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
window.wxc.xcConfirm("保存失败", "error");
return ;
},
});
});

ajax提交文件

标签:multipart   else   return   pdf   document   xmlhttp   style   ror   ret   

原文地址:https://www.cnblogs.com/foreverstudy/p/12744281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!