jQuery EasyUI API 中文文档 - Documentation 文档_jquery

WBOY
Release: 2016-05-16 18:01:35
Original
1070 people have browsed it

每个easyui组件都有特性(property)、方法(method)和事件(event),用户可以很容易地扩展它们。
特性
特性在jQuery.fn.{plugin}.defaults里定义。例如, dialog的特性在jQuery.fn.dialog.defaults里定义。
事件
事件(回调函数)也在jQuery.fn.{plugin}.defaults里定义。
方法
方法在jQuery.fn.{plugin}.methods里定义。每个方法有两个参数:jq和param。第一个参数'jq'是必须的,它是指jQuery对象。第二个参数'param' 是指传递给方法的真正的参数。例如,给dialog组件扩展一个名叫'mymove' 的方法,代码看起来就像这样:

复制代码代码如下:

$.extend($.fn.dialog.methods, {
mymove: function(jq, newposition){
return jq.each(function(){
$(this).dialog('move', newposition);
});
}
});

现在你可以调用'mymove'方法把dialog移动到一个指定的位置:
复制代码代码如下:

$('#dd').dialog('mymove', {
left: 200,
top: 100
});
Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!