关于上传文件插件Uploadify的使用
使用过程中发现一些问题
1.上传完毕之后,需要使用onComplete来操作所返回fileObject。进而在提交的时候进行文件关联。
'onComplete' : function(event, ID, fileObj, response, data) { $("#file_upload").append("<input type='hidden' name='filePath' id='"+ID+"' value='"+response+"'/>"); $("#file_upload"+ID).append("<br />文件名:<span class='response'>"+response+"</span>"); }
'onCancel': function(event,ID,fileObj,data) { if (confirm('是否移除该文件')){ //通过后台删除之! callDelete($("#file_upload"+ID+" > .response").html()); $("#"+ID).remove(); if (data.fileCount<=0){ $("#queueList").hide(); $("#confirmUpload").hide(); }return true; }else{ return false; } }