文件上传组件uploadify3.1版本参数使用详解-多文件上传

分类:Javascript| 发布:camnprbubuol| 查看:281 | 发表时间:2014/2/21

使用:

   先引用:<link rel="stylesheet" type="text/css" href="js/uploadify3/uploadify.css" />

<script src="js/jquery.min.js" type="text/javascript"></script>

<script type="text/javascript" src="js/uploadify3/jquery.uploadify-3.1.js"></script>

下载地址uploadify-v3.1.zip

绑定的界面元素<input id='gallery'type='file'/>$("#gallery").uploadify({设置参数,参数如下});

设置的属性:

01id: jQuery(this).attr('id'),//绑定的input的ID
02 langFile: 'http://www.static-xxx.nu/uploader/uploadifyLang_en.js',//语言包的路径,能设置所有的提示文字
03 swf: 'http://www.static-xxx.nu/uploader/uploadify.swf',//[必须设置]swf的路径
04 uploader: '/uploadify/galleri.php',//[必须设置]上传文件触发的url
05 auto:false,//文件选择完成后,是否自动上传
06 buttonText:'V?lj Filer',//上传按钮的文字
07 height: 30,//上传按钮的高和宽
08 width: 120,
09 formData: null,
10 buttonCursor: 'pointer',//上传鼠标hover后Cursor的形状
11 cancelImage: 'http://www.static-xxx.nu/uploadify-cancel.png',//[必须设置]取消图片的路径
12 checkExisting:'/uploader/uploadify-check-existing.php',//检查上传文件是否存,触发的url,返回1/0
13 debug: true,//debug模式开/关,打开后会显示debug时的信息
14 fileObjName:'file',
15 fileSizeLimit : 0,//文件的极限大小,以字节为单位,0为不限制。1MB:1*1024*1024
16 fileTypeDesc: 'Bild JPG',//允许上传的文件类型的描述,在弹出的文件选择框里会显示
17 fileTypeExts: '*.jpg',//允许上传的文件类型,限制弹出文件选择框里能选择的文件
18 method: 'post',//和后台交互的方式:post/get
19 multi: true,//是否能选择多个文件
20 queueID: 'fileQueue',//显示上传文件队列的元素id,可以简单用一个div来显示
21 queueSizeLimit : 999,//队列中允许的最大文件数目
22 progressData : 'all', // 'percentage''speed''all'//队列中显示文件上传进度的方式:all-上传速度+百分比,percentage-百分比,speed-上传速度
23 removeCompleted : true,//上传成功后的文件,是否在队列中自动删除
24 removeTimeout: 3,
25 requeueErrors : true,
26 postData: {},//和后台交互时,附加的参数
27 preventCaching : true,
28 transparent: true,
29 successTimeout : 30,//上传时的
30 timeoutuploadLimit:999//能同时上传的文件数目

设置的事件:

001onDialogClose : function(swfuploadifyQueue) {//当文件选择对话框关闭时触发
002  if( swfuploadifyQueue.filesErrored > 0 ){
003  alert( '添加至队列时有'
004  +swfuploadifyQueue.filesErrored
005  +'个文件发生错误n'
006  +'错误信息:'
007  +swfuploadifyQueue.errorMsg
008  +'n选定的文件数:'
009  +swfuploadifyQueue.filesSelected
010  +'n成功添加至队列的文件数:'
011  +swfuploadifyQueue.filesQueued
012  +'n队列中的总文件数量:'
013  +swfuploadifyQueue.queueLength);
014  }
015}
016onDialogOpen : function() {//当选择文件对话框打开时触发
017  alert( 'Open!');
018}
019onSelect : function(file) {//当每个文件添加至队列后触发
020  alert( 'id: ' + file.id
021  + ' - 索引: ' + file.index
022  + ' - 文件名: ' + file.name
023  + ' - 文件大小: ' + file.size
024  + ' - 类型: ' + file.type
025  + ' - 创建日期: ' + file.creationdate
026  + ' - 修改日期: ' + file.modificationdate
027  + ' - 文件状态: ' + file.filestatus);
028}
029onSelectError : function(file,errorCode,errorMsg) {//当文件选定发生错误时触发
030  alert( 'id: ' + file.id
031  + ' - 索引: ' + file.index
032  + ' - 文件名: ' + file.name
033  + ' - 文件大小: ' + file.size
034  + ' - 类型: ' + file.type
035  + ' - 创建日期: ' + file.creationdate
036  + ' - 修改日期: ' + file.modificationdate
037  + ' - 文件状态: ' + file.filestatus
038  + ' - 错误代码: ' + errorCode
039  + ' - 错误信息: ' + errorMsg);
040}
041onQueueComplete : function(stats) {//当队列中的所有文件全部完成上传时触发
042  alert( '成功上传的文件数: ' + stats.successful_uploads
043  + ' - 上传出错的文件数: ' + stats.upload_errors
044  + ' - 取消上传的文件数: ' + stats.upload_cancelled
045  + ' - 出错的文件数' + stats.queue_errors);
046}
047onUploadComplete : function(file,swfuploadifyQueue) {//队列中的每个文件上传完成时触发一次
048  alert( 'id: ' + file.id
049  + ' - 索引: ' + file.index
050  + ' - 文件名: ' + file.name
051  + ' - 文件大小: ' + file.size
052  + ' - 类型: ' + file.type
053  + ' - 创建日期: ' + file.creationdate
054  + ' - 修改日期: ' + file.modificationdate
055  + ' - 文件状态: ' + file.filestatus
056  + ' - 出错的文件数: ' + swfuploadifyQueue.filesErrored
057  + ' - 错误信息: ' + swfuploadifyQueue.errorMsg
058  + ' - 要添加至队列的数量: ' + swfuploadifyQueue.filesSelected
059  + ' - 添加至对立的数量: ' + swfuploadifyQueue.filesQueued
060  + ' - 队列长度: ' + swfuploadifyQueue.queueLength);
061}
062onUploadError : function(file,errorCode,errorMsg,errorString,swfuploadifyQueue) {//上传文件出错是触发(每个出错文件触发一次)
063  alert( 'id: ' + file.id
064  + ' - 索引: ' + file.index
065  + ' - 文件名: ' + file.name
066  + ' - 文件大小: ' + file.size
067  + ' - 类型: ' + file.type
068  + ' - 创建日期: ' + file.creationdate
069  + ' - 修改日期: ' + file.modificationdate
070  + ' - 文件状态: ' + file.filestatus
071  + ' - 错误代码: ' + errorCode
072  + ' - 错误描述: ' + errorMsg
073  + ' - 简要错误描述: ' + errorString
074  + ' - 出错的文件数: ' + swfuploadifyQueue.filesErrored
075  + ' - 错误信息: ' + swfuploadifyQueue.errorMsg
076  + ' - 要添加至队列的数量: ' + swfuploadifyQueue.filesSelected
077  + ' - 添加至对立的数量: ' + swfuploadifyQueue.filesQueued
078  + ' - 队列长度: ' + swfuploadifyQueue.queueLength);
079}
080onUploadProgress : function(file,fileBytesLoaded,fileTotalBytes,queueBytesLoaded,swfuploadifyQueueUploadSize) {//上传进度发生变更时触发
081alert( 'id: ' + file.id
082  + ' - 索引: ' + file.index
083  + ' - 文件名: ' + file.name
084  + ' - 文件大小: ' + file.size
085  + ' - 类型: ' + file.type
086  + ' - 创建日期: ' + file.creationdate
087  + ' - 修改日期: ' + file.modificationdate
088  + ' - 文件状态: ' + file.filestatus
089  + ' - 当前文件已上传: ' + fileBytesLoaded
090  + ' - 当前文件大小: ' + fileTotalBytes
091  + ' - 队列已上传: ' + queueBytesLoaded
092  + ' - 队列大小: ' + swfuploadifyQueueUploadSize);
093}
094onUploadStart: function(file) {//上传开始时触发(每个文件触发一次)
095  alert( 'id: ' + file.id
096  + ' - 索引: ' + file.index
097  + ' - 文件名: ' + file.name
098  + ' - 文件大小: ' + file.size
099  + ' - 类型: ' + file.type
100  + ' - 创建日期: ' + file.creationdate
101  + ' - 修改日期: ' + file.modificationdate
102  + ' - 文件状态: ' + file.filestatus );
103}
104onUploadSuccess : function(file,data,response) {//上传完成时触发(每个文件触发一次)
105  alert( 'id: ' + file.id
106  + ' - 索引: ' + file.index
107  + ' - 文件名: ' + file.name
108  + ' - 文件大小: ' + file.size
109  + ' - 类型: ' + file.type
110  + ' - 创建日期: ' + file.creationdate
111  + ' - 修改日期: ' + file.modificationdate
112  + ' - 文件状态: ' + file.filestatus
113  + ' - 服务器端消息: ' + data
114  + ' - 是否上传成功: ' + response);
115}

html:

1<a href="javascript:$('#uploadify').uploadify('cancel')">取消上传</a>
2<a href="javascript:$('#uploadify').uploadify('upload')">上传</a>

下载地址uploadify-v3.1.zip

例子:

01$('#camnprID').uploadify({
02 'swf': resouce() + '/contenteditor/js/uploadify3/uploadify.swf',
03 'cancelImage': resouce() + '/contenteditor/js/uploadify3/uploadify-cancel.png',
04 'height':25,//上传按钮的高和宽
05 'width':120,
06 'buttonText': '选择文件',
07 'multi': true,
08 'queueSizeLimit': 20,
09 'auto': true,
10 'buttonCursor': 'pointer',
11 'myparams': params, //自定义参数,为了保存值
12 'fileTypeExts': '*.xlsx;*.xls;*.xlsm;*.doc',
13 'fileTypeDesc': '请选择文件',
14 'queueID': 'uploadifyQueueDiv',
15 'wmode': 'transparent',
16 'scriptAccess': 'always',
17 'fileObjName': 'image',
18 'uploader' : resouce() + "/weichat/areaData/diyuExeclUploadAction.action?folderName="+params,
19 'postData': {},
20 'onDialogClose': function(swfuploadifyQueue) {//当文件选择对话框关闭时触发
21  
22 },
23 'onDialogOpen' : function(params) {//当选择文件对话框打开时触发
24    //$.post('/areaData/deleteFile.action', {"folderName": this.settings.myparams}, function(res){});
25 },
26 'onSelect':function(file) {//当每个文件添加至队列后触发
27   $('#uploadmsg').html(' - 文件名: ' + file.name
28   + ' - 文件大小: ' + file.size
29   + ' - 类型: ' + file.type
30   + '【开始上传】');
31 },
32 'onUploadProgress' : function(file,fileBytesLoaded,fileTotalBytes,queueBytesLoaded,swfuploadifyQueueUploadSize) {//上传进度发生变更时触发
33 $('#uploadmsg').html(' - 文件名: ' + file.name
34   + ' - 文件大小: ' + file.size
35   + ' - 当前文件已上传: ' + fileBytesLoaded);
36 },
37 'onQueueComplete' : function(stats, ID, fileObj, response, data) {//当队列中的所有文件全部完成上传时触发
38   $('#uploadmsg').html('全部上传成功');
39     setTimeout(function(){$("#uploadmsg").html("");}, 3000);
40 }
41 });

来源:via

365据说看到好文章不转的人,服务器容易宕机
原创文章如转载,请注明:转载自郑州网建-前端开发 http://camnpr.com/
本文链接:http://camnpr.com/javascript/966.html