nash01 发表于 2013-1-28 09:35:27

jquery ocupload Documentation api

Documentation
Updated Feb 4, 2010 by michael....@gmail.com
Documentation

This documentation covers the following.

    * Basic Usage
    * Options
    * Functions
    * Callbacks

Basic Usage

As a jQuery chained function

$(element).upload( /** options */ );

As a stand-alone jQuery function

$.ocupload($(element), /** options */ );

Options

Both of the functions accept an optional options object, which can contain any or all of the following (default value):

    * name: ("file") The name of the file input form element.
    * enctype: ("multipart/form-data") The enctype attribute of the form, it is usually a good idea to leave this as default.
    * action: (null) The form action attribute, the page that will do the processing on the server side.
    * autoSubmit: (true) If true the form will be submitted after the user selects a file (after the file browser closes).
    * params: ({}) Additional paramaters to be sent with the file, creates a hidden form element using the key as the name of the form and the value as the value.
    * onSubmit: (null) The callback function called before submitting the form.
    * onComplete: (null) The callback function called after the action page loads.
    * onSelect: (null) The callback function called after the user has selected a file.

Example

var myUpload = $(element).upload({
      name: 'file',
      action: '',
      enctype: 'multipart/form-data',
      params: {},
      autoSubmit: true,
      onSubmit: function() {},
      onComplete: function() {},
      onSelect: function() {}
});

Functions
filename
Description

string filename ( void )

This function returns the name of the currently selected file.
Example

var myUpload = $(element).upload();
alert(myUpload.filename());

name
Description

string name ( void )
void name ( string )

This function is used to get and set the name of the file input.
Example

//Setting name at creation
var myUpload = $(element).upload({
      name: 'myFile'
});

//Changes the file input name to "myNewFile"
myUpload.name('myNewFile');

//Alerts "myNewFile"
alert(myUpload.name());

action
Description

string action ( void )
void action ( string )

This function is used to get and set the action of the form.
Example

//Setting action at creation
var myUpload = $(element).upload({
      action: 'upload.php'
});

//Changes the form action to "path/to/dir/newUpload.php"
myUpload.action('path/to/dir/newUpload.php');

//Alerts "path/to/dir/newUpload.php"
alert(myUpload.action());

enctype
Description

string enctype ( void )
void enctype ( string )

This function is used to get and set the enctype of the form.
Example

//Setting enctype at creation
var myUpload = $(element).upload({
      enctype: 'multipart/form-data'
});

//Changes the form enctype to "application/x-www-form-urlencoded"
myUpload.enctype('application/x-www-form-urlencoded');

//Alerts "text/plain"
alert(myUpload.enctype());

params
Description

object params ( void )
void params ( object )

This function is used to alter additional parameters.
Example

//Setting paramters at creation
var myUpload = $(element).upload({
      params: {name: 'My file', description: 'My file description'}
});

/**
* Settings paramaters during runtime
*      name: "My file" is replaced with "My new file
*      description: remains the same
*      size: is added
*/
myUpload.params({
      name: 'My new file', size: '1000kb'
});

set
Description

void set ( object )

This function is used to alter options after creation of the object.
Example

//Setting options at creation
var myUpload = $(element).upload( /** options */ );

//Setting options after creation
myUpload.set({
      name: 'file',
      action: '',
      enctype: 'multipart/form-data',
      params: {},
      autoSubmit: true,
      onSubmit: function() {},
      onComplete: function() {},
      onSelect: function() {}
});

submit
Description

void submit ( object )

This function is used to submit the form if autoSubmit is turned off.
Example

Javascript

var myUpload = $(element).upload( /** options */ );

HTML

<input type="button" value="submit"/>

Callbacks
onSubmit

void onSubmit ( void )
Description

This is called before the form is submitted, this is where you should make last minute changes to the parameters etc...
onComplete

void onComplete ( response )
Description

This is called after the action page has loaded, the first parameter contains the html response from the action so you can use it like an AJAX response. onComplete does not mean the file was uploaded successfully, you should use the action script to supply a suitable response.
onSelect

void onSelect ( void )
Description

This is called after the file browse window is closed or the value of the file input is changed.
页: [1]
查看完整版本: jquery ocupload Documentation api