var reorder = 0; function loadUpload(i,e,key,upload,assets) { e.uploadify({ 'formData' : {'key' : key}, 'swf' : assets + 'uploadify.swf', 'buttonText' : '选择文件', 'uploader' : upload, 'cancelImg' : assets + 'image/uploadify-cancel.png', 'width':'65',//选择文件按钮的宽度 'height':'65',//选择文件按钮的高度 'buttonText' : '', //'buttonClass' : 'update', 'onUploadSuccess':function(file,data,response) { console.info(data); var data = eval('('+data+')'); if(data.status) { var value = e.attr('v'); if(value.indexOf('mul') != -1 && $(value).length) { var img = ''; $(value).eq(reorder).html(img); $("#content").val($("#content").val() + "
" + img); reorder++; if(reorder > 5) { reorder = 0; } } else { jQuery("#"+file.id).find('.data').html('上传完毕'); jQuery("#"+file.id).hide(); jQuery('#'+value).val(data.url); jQuery('#show_'+value).attr('src',data.url).show(); } } else { jQuery("#"+file.id).find('.data').html(""+data.message+""); return false; } } }); } if(jQuery.browser.msie){ SWFUpload.prototype.getFlashHTML = function () { return ['', '', '', '', '', '', '', ''].join(""); } }