jQuery EasyUI API 中文文档 - Documentation 文档_jquery
程序员文章站
2022-05-16 17:04:15
...
每个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
});
特性
特性在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
});
推荐阅读
-
jQuery API 文档下载(最新1.1版离线API) jQueryIEXML
-
Lazy Load 延迟加载图片的jQuery插件中文使用文档
-
jquery.ui.draggable中文文档
-
jQuery幻灯片插件owlcarousel参数说明中文文档
-
jQuery EasyUI API 中文文档 - DateBox日期框
-
jqPlot 图表中文API使用文档及源码和在线示例_jquery
-
jQuery EasyUI API 中文文档 - NumberBox数字框_jquery
-
jQuery EasyUI 中文API Button使用实例_jquery
-
jquery.ui.progressbar 中文文档_jquery
-
jQuery EasyUI API 中文文档 - DataGrid数据表格_jquery