ajax不提交文件对象方法
程序员文章站
2022-07-15 16:43:11
...
**$.ajax**
({
url: ROOT + '/statistics/channel_provider_add',
data: **$('#frmMain').serialize()**,
type: "POST",
cache: false,
success: function(msg) {
layer.close(_layerIndex);
if(msg.status){
layer.confirm('添加成功~!是否继续添加?', function(){
window.location.reload();
}, function(){
window.location.href = msg.info;
});
}else{
layer.alert(msg.info);
}
_adding = false;
}
});
直接使用$.ajax和$('#frm').serialize()可以避免上传文件对象到表单中,使用jquery的ajaxSubmit在使用了serialize()的情况下人就会提交文件对象到表单中。
上一篇: docker 安装 Error response from daemon: Cannot start container no such file or directory
下一篇: Ubuntu安装leveldb出现错误 fatal error: Python.h: No such file or directory
推荐阅读
-
关于ajax对象一些常用属性、事件和方法大小写比较常见的问题总结
-
JSP隐含对象response实现文件下载的两种方法
-
jquery实现ajax提交form表单的方法总结
-
jQuery.Form实现Ajax上传文件同时设置headers的方法
-
PowerShell中文件对象的属性方法总结
-
ajax提交session超时跳转页面使用全局的方法来处理
-
jQuery ajax中使用serialize()方法提交表单数据示例
-
两种方法实现asp.net方案的前后端数据交互(aspx文件、html+ashx+ajax)
-
C#中关闭子窗口而不释放子窗口对象的方法
-
怎么打印微信图片不黑(照片文件打印时发黑难题解决方法)