ajaxFileUpload.js插件支持多文件上传的方法

Posted 适当的废话

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajaxFileUpload.js插件支持多文件上传的方法相关的知识,希望对你有一定的参考价值。

前提条件:
ajaxFileUpload.js插件多文件上传
步骤:
1、修改源码,(源码只支持单个文件的上传):
复制代码 代码如下:

//修改前代码-------
//var oldElement = jQuery(‘#‘ + fileElementId);
//var newElement = jQuery(oldElement).clone();
//jQuery(oldElement).attr(‘id‘, fileId);
//jQuery(oldElement).before(newElement);
//jQuery(oldElement).appendTo(form);
//修改前代码-------
//修改后代码-------
for(var i in fileElementId){
var oldElement = jQuery(‘#‘ + fileElementId[i]);
var newElement = jQuery(oldElement).clone();
jQuery(oldElement).attr(‘id‘, fileId);
jQuery(oldElement).before(newElement);
jQuery(oldElement).appendTo(form);
}
//修改后代码-------

2、使用方法:
复制代码 代码如下:

$.ajaxFileUpload({
url : "./upload/upload.action",
secureuri : false,
//fileElementId:‘uploadfile1‘,//原使用方法
fileElementId : [‘uploadfile1‘,‘uploadfile2‘,‘uploadfile3‘,‘uploadfile4‘,‘uploadfile5‘],//现使用方法
dataType : ‘json‘,
success : function(data) {
ajaxLoadEnd();
if (data.result == "success") {
$.messager.alert(‘信息‘,‘导入成功。‘,‘info‘);
} else {
$(‘#import_right‘).dialog(‘open‘);
$.messager.alert(‘信息‘,‘导入失败。<br>错误信息:‘+data.message,‘error‘);
}
},
error : function(data, status, e)
{
ajaxLoadEnd();
$.messager.alert(‘信息‘,‘导入失败。<br>错误信息:网络异常或表单数据错误。‘,‘error‘);
}
});









































以上是关于ajaxFileUpload.js插件支持多文件上传的方法的主要内容,如果未能解决你的问题,请参考以下文章

jQuery插件ajaxfileupload.js源码与使用

jQuery插件之ajaxFileUpload异步上传

ajax图片上传(ajaxfileupload.js插件)

jsp中使用jquery的ajaxfileupload插件怎么实现异步上传

Jquery+ajaxfileupload上传文件

jQuery插件之ajaxFileUpload