码迷,mamicode.com
首页 > 其他好文 > 详细

Django uplodify 多文件同时上传

时间:2014-09-04 10:27:49      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   java   strong   ar   for   文件   

Js代码: 

//批量上传按钮 $(‘#fileupload‘).uploadify ({ ‘swf‘ : ‘/CoveragePlaform/media/uploadify-3.2/uploadify.swf‘, ‘uploader‘ : ‘‘, ‘cancelImage‘ : ‘/CoveragePlaform/media/uploadify-3.2/uploadify-cancel.png‘, ‘buttonClass‘ : ‘btn‘, /*‘checkExisting‘ : ‘{%url check_existing %}‘,*/ ‘removeCompleted‘ : true, ‘fileTypeExts‘ : ‘*.txt‘, ‘auto‘ : false, ‘multi‘ : true, ‘folder‘ : ‘UploadFile‘, //‘queueID‘ : ‘uploadfileQueue‘, //‘fileCount‘ : 5, // ‘filesSelected‘ : 5, ‘buttonText‘ : ‘em/ec文件上传‘, ‘simUploadLimit ‘ : 10, ‘queueSizeLimit‘ : 25, ‘onUploadStart‘ : function(file) { }, ‘onUploadSuccess‘ : function (file, data, response) { //alert("success"); // $("#instructions").before("<img src=‘/media/{{request.user.id}}/"+data+"‘ />") } }); }); function uploadifyUpload (){ $("#fileupload").uploadify(‘upload‘,‘*‘); //如果参数是.uploadify(‘upload‘),就只能上传一个文件,后面如果加个* 号就是全部上传,这是3.1uploadify的API }


html:
<input type="file" name="emupload" id="fileupload"> </input> 
      <br/>
      <br/>   
    <br />
    <br />
     <!--<a href="javascript:$(‘#uploadify‘).uploadifyUpload()">开始上传</a>|-->  
    <button class="btn"  id="upload" onclick="uploadifyUpload()"><strong>运行</strong></button>

 


 

Django uplodify 多文件同时上传

标签:style   blog   color   io   java   strong   ar   for   文件   

原文地址:http://www.cnblogs.com/shellnalu/p/3955480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!