JSLite - 外掛程式編寫


如有疑問歡迎到這些地方交流,歡迎加入JSLite.io組織團體共同開發!

$.extend

透過來源物件擴展目標物件的屬性,擴展JSLite 元素集來提供新的方法(通常用來製作外掛)

$.extend({
    min: function(a, b) { return a < b ? a : b; },
    max: function(a, b) { return a > b ? a : b; }
});
$.min(2,3);    //⇒ 2
$.max(4,5);    //⇒ 5
// 在$上扩展了几个方法  
//调用方法  $.min(2,3);   //⇒ 2
//调用方法  $.max(4,5);   //⇒ 5

$.fn.extend

擴充功能JSLite 元素集來提供新的方法(通常用來製作外掛程式)。

$.fn.extend({   //增加两个插件方法。
    check: function() {
        return this.each(function() { this.checked = true; });
    },
    uncheck: function() {
        return this.each(function() { this.checked = false; });
    }
});
$("input[type=checkbox]").check();  //选中
$("input[type=radio]").uncheck();   //取消选中

$.error

當元素遇到錯誤(沒有正確載入)時,發生 error 事件。

$.error("2222")
//⇒ 输出错误 Uncaught 2222