$(function() {
$("#file_upload").uploadify({
'formData' : {'someKey' : 'someValue', 'someOtherKey' : 1},
'swf' : '/uploadify/uploadify.swf',
'uploader' : '/uploadify/uploadify.php',
'onUploadStart' : function(file) {
$("#file_upload").uploadify("settings", "someOtherKey", 2);
}
});
});
属性是formData
$("#file_upload").uploadify("settings", "formData", {'someKey' : 'someValue', 'someOtherKey' : 1});
还要加上'method':'get'
否则也没有用。