Home  >  Article  >  Web Front-end  >  jQuery EasyUI API Chinese documentation - Form form_jquery

jQuery EasyUI API Chinese documentation - Form form_jquery

WBOY
WBOYOriginal
2016-05-16 18:01:14934browse

Form form
Usage

Copy code The code is as follows:


...


Make the form an ajax submitted form.
Copy code The code is as follows:

$('#ff').form({
url:...,
onSubmit: function(){
// Do some checks
// Return false to prevent submission
},
success:function(data) {
alert(data)
}
});
// Submit form
$('#ff').submit();

Go Make a commit action.
Copy code The code is as follows:

// Call the 'submit' method of the form plug-in to submit form
$('#ff').form('submit', {
url:...,
onSubmit: function(){
// Do some checks
/ / Return false to prevent submission
},
success:function(data){
alert(data)
}
});

特性

名称

类型

说明

默认值

url

string

表单提交动作的 URL

null

事件

名称

参数

说明

onSubmit

none

提交前触发,返回 false 来阻止提交动作。

success

data

当表单提交成功时触发。

onBeforeLoad

param

发出请求加载数据之前触发。返回 false 就取消这个动作。

onLoadSuccess

data

当表单数据加载时触发。

onLoadError

none

加载表单数据时发生某些错误的时候触发。

方法

名称

参数

说明

submit

options

做提交动作, options 参数是一个对象,它包含系列特性:
url
:动作的 URL
onSubmit
:提交之前的回调函数
success
:提交成功之后的回调函数

load

data

加载记录来填充表单。
data
参数可以是一个字符串或者对象类型,字符串作为一个远程 URL,否则作为一个本地记录。

clear

none

清除表单数据。

validate

none

performs form field validation and returns true when all fields are valid. This method is used together with the validatebox plugin.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn