文件上传组件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({设置参数,参数如下})
;
设置的属性:
01 | id: jQuery( this ).attr( 'id' ), |
04 | uploader: '/uploadify/galleri.php' , |
06 | buttonText: 'V?lj Filer' , |
10 | buttonCursor: 'pointer' , |
12 | checkExisting: '/uploader/uploadify-check-existing.php' , |
16 | fileTypeDesc: 'Bild JPG' , |
17 | fileTypeExts: '*.jpg' , |
23 | removeCompleted : true , |
27 | preventCaching : true , |
30 | timeoutuploadLimit:999 |
设置的事件:
001 | onDialogClose : function (swfuploadifyQueue) { |
002 | if ( swfuploadifyQueue.filesErrored > 0 ){ |
004 | +swfuploadifyQueue.filesErrored |
007 | +swfuploadifyQueue.errorMsg |
009 | +swfuploadifyQueue.filesSelected |
011 | +swfuploadifyQueue.filesQueued |
013 | +swfuploadifyQueue.queueLength); |
016 | onDialogOpen : function () { |
019 | onSelect : 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); |
029 | onSelectError : 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); |
041 | onQueueComplete : function (stats) { |
042 | alert( '成功上传的文件数: ' + stats.successful_uploads |
043 | + ' - 上传出错的文件数: ' + stats.upload_errors |
044 | + ' - 取消上传的文件数: ' + stats.upload_cancelled |
045 | + ' - 出错的文件数' + stats.queue_errors); |
047 | onUploadComplete : 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); |
062 | onUploadError : 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); |
080 | onUploadProgress : function (file,fileBytesLoaded,fileTotalBytes,queueBytesLoaded,swfuploadifyQueueUploadSize) { |
081 | alert( '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); |
094 | onUploadStart: 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 ); |
104 | onUploadSuccess : 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); |
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' , |
10 | 'buttonCursor' : 'pointer' , |
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, |
20 | 'onDialogClose' : function (swfuploadifyQueue) { |
23 | 'onDialogOpen' : function (params) { |
26 | 'onSelect' : function (file) { |
27 | $( '#uploadmsg' ).html( ' - 文件名: ' + file.name |
28 | + ' - 文件大小: ' + file.size |
29 | + ' - 类型: ' + file.type |
32 | 'onUploadProgress' : function (file,fileBytesLoaded,fileTotalBytes,queueBytesLoaded,swfuploadifyQueueUploadSize) { |
33 | $( '#uploadmsg' ).html( ' - 文件名: ' + file.name |
34 | + ' - 文件大小: ' + file.size |
35 | + ' - 当前文件已上传: ' + fileBytesLoaded); |
37 | 'onQueueComplete' : function (stats, ID, fileObj, response, data) { |
38 | $( '#uploadmsg' ).html( '全部上传成功' ); |
39 | setTimeout( function (){$( "#uploadmsg" ).html( "" );}, 3000); |
来源:via