DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery EasyUI API 中文文檔 - Documentation 文檔
jQuery EasyUI API 中文文檔 - Documentation 文檔
編輯:JQuery特效代碼     
每個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
});
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved