前提条件:
步骤:
代码如下:
修改前代码-------
//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、使用方法:
代码如下:
方法
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('信息','导入失败。
错误信息:'+data.message,'error'); } }, error : function(data,status,e) { ajaxLoadEnd(); $.messager.alert('信息','导入失败。
错误信息:网络异常或表单数据错误。','error'); } });
原文链接:https://www.f2er.com/ajax/57915.html错误信息:'+data.message,'error'); } }, error : function(data,status,e) { ajaxLoadEnd(); $.messager.alert('信息','导入失败。
错误信息:网络异常或表单数据错误。','error'); } });