首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

如何在jquery.uploadify.v2.1.0中的初始化添加一个初始化参数,人在

2013-07-24 
怎么在jquery.uploadify.v2.1.0中的初始化添加一个初始化参数,人在怎么在jquery.uploadify.v2.1.0中的初始

怎么在jquery.uploadify.v2.1.0中的初始化添加一个初始化参数,人在
怎么在jquery.uploadify.v2.1.0中的初始化添加一个初始化参数
jQuery(this).each(function(){
settings = jQuery.extend({
id             : jQuery(this).attr('id'), // The ID of the object being Uploadified
uploader       : 'uploadify.swf', // The path to the uploadify swf file
script         : 'uploadify.php', // The path to the uploadify backend upload script
expressInstall : null, // The path to the express install swf file
folder         : '', // The path to the upload folder
height         : 30, // The height of the flash button
width          : 110, // The width of the flash button
cancelImg      : 'cancel.png', // The path to the cancel image for the default file queue item container
wmode          : 'opaque', // The wmode of the flash file
scriptAccess   : 'sameDomain', // Set to "always" to allow script access across domains
fileDataName   : 'Filedata', // The name of the file collection object in the backend upload script
method         : 'POST', // The method for sending variables to the backend upload script
queueSizeLimit : 999, // The maximum size of the file queue
simUploadLimit : 1, // The number of simultaneous uploads allowed
queueID        : true, // The optional ID of the queue container
displayData    : 'percentage', // Set to "speed" to show the upload speed in the default queue item
onInit         : function() {}, // Function to run when uploadify is initialized
onSelect       : function() {}, // Function to run when a file is selected


onQueueFull    : function() {}, // Function to run when the queue reaches capacity
onCheck        : function() {}, // Function to run when script checks for duplicate files on the server
onCancel       : function() {}, // Function to run when an item is cleared from the queue
onError        : function() {}, // Function to run when an upload item returns an error
onProgress     : function() {}, // Function to run each time the upload progress is updated
onComplete     : function() {}, // Function to run when an upload is completed
onAllComplete  : function() {}  // Functino to run when all uploads are completed
}, options);
我想在里边添加一个flag参数,使他能在java里边获取到他的参数 jQuery java
[解决办法]
'onUploadStart': function (file) {
                var curObj = getDataJson();
                /*附加参数 formData*/
                $('#' + cid).uploadify('settings', 'formData', { 'uid': curObj.uid, 'uname': curObj.uname, 'pub': curObj.pub, 'rType': curObj.rType, 'userid': curObj.userid, 'year': curObj.year });

onUploadStart事件里加


[解决办法]
不好意思 没注意 楼主是v 2的

http://q.cnblogs.com/q/41191/

热点排行