导航:首页 > 文件教程 > ajax提交form表单文件上传

ajax提交form表单文件上传

发布时间:2025-03-20 16:58:52

1. 使用jquery.form.js实现文件上传及进度条前端代码

ajax的表单提交只能提交data数据到后台,没法实现file文件的上传还有展示进度功能,这里用到form.js的插件来实现,搭配css样式简单易上手,而且高大上,推荐使用。

需要解释下我的结构, #upload-input-file 的input标签是真实的文件上传按钮,包裹form标签后可以实现上传功能, #upload-input-btn 的button标签是展示给用户的按钮,因为需要样式的美化。上传完成生成的文件名将会显示在 .upload-file-result 里面, .progress 是进度条的位置,先让他隐藏加上 hidden 的class, .progress-bar 是进度条的主体, .progress-bar-status 是进度条的文本提醒。

去掉hidden的class,看到的效果是这样的
[图片上传失败...(image-2c700a-1548557865446)]

将上传事件绑定在file的input里面,绑定方式就随意了。
var progress = $(".progress-bar"), status = $(".progress-bar-status"), percentVal = '0%'; //上传步骤 $("#myupload").ajaxSubmit({ url: uploadUrl, type: "POST", dataType: 'json', beforeSend: function () { $(".progress").removeClass("hidden"); progress.width(percentVal); status.html(percentVal); }, uploadProgress: function (event, position, total, percentComplete) { percentVal = percentComplete + '%'; progress.width(percentVal); status.html(percentVal); console.log(percentVal, position, total); }, success: function (result) { percentVal = '100%'; progress.width(percentVal); status.html(percentVal); //获取上传文件信息 uploadFileResult.push(result); // console.log(uploadFileResult); $(".upload-file-result").html(result.name); $("#upload-input-file").val(''); }, error: function (XMLHttpRequest, textStatus, errorThrown) { console.log(errorThrown); $(".upload-file-result").empty(); } });

[图片上传失败...(image-3d6ae0-1548557865446)]

[图片上传失败...(image-9f0adf-1548557865446)]

更多用法可以 参考官网

2. ajax怎么提交带文件上传表单

上传的文件是没有办法和表单内容一起异步的,可考虑使用jquery的ajaxfileupload,或是其他的插件,异步上传文件后,然后再对表单进行操作。

3. ajax怎样提交form表单与实现文件上传

Ajax 提交form方式可以来将form表单序列化源 然后将数据通过data提交至后台,例如:

阅读全文

与ajax提交form表单文件上传相关的资料

热点内容
linux内核分析文件光盘 浏览:310
jscheckbox选中事件 浏览:696
有什么网站可以做衣服 浏览:896
苏州企业qq 浏览:195
安全编程是什么 浏览:603
什么能存储视频数据最久 浏览:817
怎么用少儿编程在电脑上制作游戏 浏览:57
一元云购怎么编程 浏览:56
别人的u盘文件可以用吗 浏览:665
微信电脑如何保存视频文件 浏览:658
qq语音游戏声音 浏览:641
w7文件系统损坏怎么办 浏览:267
文件名前设置 浏览:509
office保存文件出错 浏览:589
离型膜厚检测数据结果怎么看 浏览:411
c格式文件打不开是怎么回事 浏览:644
cad2014缺少d3文件 浏览:484
三星微信数据清理了怎么恢复 浏览:277
oppo倒数据用什么软件 浏览:729
销售额数据变动的主要原因是什么 浏览:807

友情链接