我是靠谱客的博主 朴素天空,最近开发中收集的这篇文章主要介绍Jquery.ocupload 一键上传技术方法参数详解(中文翻译)(一键上传新手入门),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

http://code.google.com/p/ocupload/ Jquery.ocupload 一键上传官网重点内容
官方文档案例
Example
var myUpload = $(element).upload({
name: ‘file’,
action: ”,
enctype: ‘multipart/form-data’,
params: {},
autoSubmit: true,
onSubmit: function() {},
onComplete: function() {},
onSelect: function() {}
})

Jquery.ocupload 一键上传技术方法参数(name,enctype,action,autoSubmit,params,onSubmit,onComplete,onSelect方法参数详解,带中文翻译)
Options
Both of the functions accept an optional options object, which can contain any or all of the following (default value):
//文件上传的名字,默认值是file
* name: (“file”) The name of the file input form element.
//文件提交的方式,默认值是multipart/form-data
* enctype: (“multipart/form-data”) The enctype attribute of the form, it is usually a good idea to leave this as default.
//文件上传的action,配置路径
* action: (null) The form action attribute, the page that will do the processing on the server side.
//文件输入框发生变化时,自动提交,默认开启自动提交,可在onSelect方法中设置autoSubmit=false
* 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.

最后

以上就是朴素天空为你收集整理的Jquery.ocupload 一键上传技术方法参数详解(中文翻译)(一键上传新手入门)的全部内容,希望文章能够帮你解决Jquery.ocupload 一键上传技术方法参数详解(中文翻译)(一键上传新手入门)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部