作者:
飝兒来源:
博客园发布时间:2012-02-15 10:23阅读:105 次
原文链接
[收藏]
以下是可选项的参数说明:(红色的属性代表常用的)
1 |
uploader |
uploadify.swf文件的相对路径,该swf文件是一个带有文字BROWSE的按钮,点击后淡出打开文件对话框,flash控件
默认值=’uploadify.swf’
|
2 |
script
|
相对路径的后端脚本,它将处理您上传的文件。
绝对路径前缀或’/'或’http’的路径
默认值=’uploadify.php’
|
3 |
checkScript
|
检查该文件是否已经选择驻留在服务器上(用来判断上传选择的文件在服务器是否存在的后台处理程序的相对路径)。
没有默认值。 官方例子中’check.php’是提供核心文件 |
4 |
scriptData
|
可提供URL传递参数。用来传递get参数。例如:
index.jsp?id=1&action=uploadify可以设置成:
‘script’: ‘index.jsp’,
‘scriptData’:{‘id’:1,’action’:'uploadify’},
注:要设置‘method’:‘GET’.
|
5 |
fileDataName
|
您的文件在上传服务器脚本阵列的名称。
默认值=’Filedata’ |
6 |
method
|
设置为发送到后端脚本的方法。要么’get’或post’。
默认值’post’
|
7 |
scriptAccess
|
flash脚本文件的访问模式,如果在本地测试设置为always,默认值:sameDomain |
8 |
folder
|
您想将文件保存到的路径。考虑到安全问题,一般并不在客户端设定后供服务器得到所存的路径。我试了下。这个参数好像以get的方式传递的。设定post得不到这个值。
|
9 |
queueID
|
文件队列ID。该ID与存放文件队列的div的ID一致。参考上一篇例子的用法。 |
10 |
queueSizeLimit
|
限制在一次队列中的次数(可选定几个文件)。默认值= 999,而一次可传几个文件有 simUploadLimit属性决定。 |
11 |
multi
|
是否允许同时上传多文件,可设定true或false。
默认false。设定true时,选中的文件是当前项。
|
12 |
auto
|
选定文件后是否自动上传,可设定true或false。
默认false
|
13 |
fileDesc
|
出现在上传对话框中的文件类型描述。与fileExt需同时使用 |
14 |
fileExt
|
支持的格式,启用本项时需同时声明fileDesc。
如:‘*.rar;*.doc
|
15 |
sizeLimit
|
控制上传文件的大小,单位byte |
16 |
simUploadLimit
|
多文件上传时,同时上传文件数目限制。默认1
一次可传几个文件。
|
17 |
buttonText
|
默认按钮的名字。默认BROWER |
18 |
buttonImg
|
使用图片按钮,设定图片的路径即可。 |
19 |
hideButton
|
上传按钮的隐藏。true 或false。默认flase |
20 |
rollover
|
值为true和false,设置为true时当鼠标移到浏览按钮上时有反转效果。 |
21 |
width
|
按钮图片的长度。默认 110 |
22 |
height
|
按钮图片的高度。默认 30 |
23 |
wmode
|
背景透明transparent 与不透明opaque设定。默认 不透明
|
24 |
cancelImg
|
取消按钮。设定图片路径。默认cancel.png
|
25 |
onInit
|
函数, 初始化时的状态。
onInit: function() {
$(“#id”).html(“上传前”);},
|
26 |
onComplete
|
函数:可传递五个参数
event: 事件对象
queueID: 完成文件的唯一标识符。
fileObj:
•name – 文件名
•filepath –上传路径
•size – 文件大小
•creationDate – 文件创建时间
•modificationDate –文件最近修改时间
•type –文件的扩展名
response: 服务器回调的数据
data:
•fileCount – The total number of files left in the queue
•speed – 平均上传速度 KB/s
如:
onComplete: function(event, queueID, fileObj) {
alert(“文件:” +fileObj.name + “上传失败”);}
|
27 |
onSelectOnce
|
函数:可传递二个参数
event: The event object.
data: An object containing details about the select operation.
•fileCount – The total number of files in the queue
•filesSelected – The number of files selected in the select operation
•filesReplaced – The number of files that were replaced in the queue
•allBytesTotal – The total number of bytes for all files in the queue
|
28 |
onCancel
|
函数:可传递四个参数
event: The event object.
queueID: The unique identifier of the file that was cancelled.
fileObj: An object containing details about the file that was selected.
•name – The name of the file
•size – The size in bytes of the file
•creationDate – The date the file was created
•modificationDate – The last date the file was modified
•type – The file extension beginning with a ‘.’
data: Details about the file queue.
•fileCount – The total number of files left in the queue
•allBytesTotal – The total number of bytes left for all files in the queue
|
29 |
onClearQueue
|
函数:可传递一个参数
event: The event object.
|
30 |
onQueueFull
|
函数:可传递二个参数
•event – The event object.
•queueSizeLimit – The maximum size of the queue.
|
31 |
onError
|
函数:可传递四个参数
event: The event object.
queueID: The unique identifier of the file that was errored.
fileObj: An object containing details about the file that was selected.
•name – The name of the file
•size – The size in bytes of the file
•creationDate – The date the file was created
•modificationDate – The last date the file was modified
• type – The file extension beginning with a ‘.’
errorObj: An object containing details about the error returned.
• type – Either ‘HTTP’, ‘IO’, or ‘Security’
• info – An error message describing the type of error returned
|
32 |
onOpen
|
函数:可传递三个参数
event: The event object.
queueID: The unique identifier of the file that was opened.
fileObj: An object containing details about the file that was selected.
•name – The name of the file
•size – The size in bytes of the file
•creationDate – The date the file was created
•modificationDate – The last date the file was modified
•type – The file extension beginning with a ‘.’
|
33 |
onProgress
|
函数:可传递四个参数
event: The event object.
queueID: The unique identifier of the file that was updated.
fileObj: An object containing details about the file that was selected.
•name – The name of the file
•size – The size in bytes of the file
•creationDate – The date the file was created
•modificationDate – The last date the file was modified
•type – The file extension beginning with a ‘.’
data: An object containing details about the upload and queue.
•percentage – The current percentage completed for the upload
•bytesLoaded – The current amount of bytes uploaded
•allBytesLoaded – The current amount of bytes loaded for all files in the queue
•speed – The current upload speed in KB/s
|
34 |
onSelect
|
event: The event object.
queueID: The unique identifier of the file that was selected.
fileObj: An object containing details about the file that was selected.
•name – The name of the file
•size – The size in bytes of the file
•creationDate – The date the file was created
•modificationDate – The last date the file was modified
•type – The file extension beginning with a ‘.’
|
35 |
onAllComplete
|
函数:可传递二个参数
event: The event object.
data: An object containing details about the upload process.
•filesUploaded – The total number of files uploaded
•errors – The total number of errors while uploading
•allbytesLoaded – The total number of bytes uploaded
•speed – The average speed of all uploaded files
|
36 |
onCheck
|
函数:可传递五个参数
event: The event object.
checkScript: The path to the file checking script.
fileQueue: A file queue object consisting ofkey/value pairs with the queue ID as the key and the filename as the value.
folder: The path to the upload folder.
single: True if only one file is being uploaded from the queue.
|
分享到:
相关推荐
Uploadify3.2参数详解,最新的jQuery Uploadfy文档。
本文主要介绍了jQuery uploadify文件上传插件的使用方法,uploadify这个插件是基于js里面的jquery库写的。结合了ajax和flash,实现了这个多线程上传的功能。具有很好的参考价值,需要的朋友一起来看下吧
JQuery上传插件Uploadify是一种流行的基于Flash的文件上传组件,它与JQuery框架结合使用,提供了一个简便的方式来实现文件的上传功能,并带有上传进度条显示。在Web开发中,文件上传是一个常见的需求,使用JQuery ...
JQuery Uploadify插件是一个基于JQuery的文件上传组件,它提供了一种用户友好的界面,支持多文件选择、上传进度显示以及批量上传等功能。在ASP.NET环境中使用Uploadify,你需要按照以下步骤进行配置和编码。 首先,...
《jQuery Uploadify资源详解》 在网页开发中,文件上传功能是不可或缺的一部分,尤其是在需要用户上传图片、文档等素材的场景。jQuery Uploadify是一款高效、易用的文件上传插件,它通过结合JavaScript、CSS、Flash...
《jQuery Uploadify与Java结合实现文件上传详解》 在网页应用中,文件上传功能是必不可少的一部分,而jQuery Uploadify是一款非常流行的前端文件上传插件,它提供了丰富的自定义选项和友好的用户界面。本文将深入...
### Uploadify3.1 参数详解 #### 一、概述 Uploadify是一款基于jQuery的文件上传插件,提供了丰富的自定义选项以及良好的用户体验。其特点包括支持上传进度显示、多文件上传等功能。本篇文章将详细介绍Uploadify3.1...
《jQuery Uploadify:批量上传与进度条实现详解》 在Web开发中,用户交互体验是至关重要的,尤其是在处理文件上传这种耗时操作时。jQuery Uploadify插件为开发者提供了一个强大的解决方案,它允许用户批量上传文件...
《jQuery.uploadify插件实战详解与应用》 jQuery.uploadify是一款功能强大的文件上传插件,它使得在网页上实现多文件、异步上传变得简单易行。本实例Demo基于jQuery.uploadify 3.2.1版本,是该插件的最新稳定版,...
【jQuery Uploadify 插件详解】 jQuery Uploadify 是一款基于jQuery的文件上传插件,它提供了用户友好的界面,支持多文件选择、上传进度显示以及批量上传等功能。这个插件适用于那些希望在网页中实现复杂文件上传...
JQuery上传插件Uploadify使用详解.doc
**jQuery Uploadify插件详解与应用** jQuery Uploadify是一款基于jQuery的文件上传插件,它提供了用户友好的界面,支持批量上传以及实时的文件上传进度显示。尤其在处理大文件上传时,Uploadify能有效提高用户体验...
《jQuery Uploadify批量上传中文版详解》 在Web开发中,文件上传是一项常见的功能,而jQuery Uploadify插件因其简洁的API和强大的功能,成为众多开发者首选的批量上传解决方案。尤其是其支持中文版本,更是方便了...
《jQuery Uploadify 多文件上传实现与API详解》 在当今的Web开发中,用户对交互性和用户体验的要求越来越高,其中,文件上传功能是不可或缺的一部分。jQuery Uploadify是一款强大的JavaScript插件,它允许用户进行...
**jQuery上传插件Uploadify详解及参数传递方法** 在Web开发中,文件上传功能是常见的需求,而jQuery的Uploadify插件提供了一种简洁、高效的方式实现这一功能。本篇文章将深入探讨Uploadify插件的基本使用,以及如何...
更正笔误处 'arg1':'value1' 应为冒号,页面中写为逗号了. ...本文件中重点关注了,服务器向页面返回值及页面向后台传递多个参数的处理,以及一些兼容性.. 该案例为真实项目中遇到的问题,具有局限性,有不足这处请大家详解