1. 程式人生 > >為jquery添加擴展標準思路

為jquery添加擴展標準思路

som 方法 添加擴展 msg AS style 擴展 pan some

jquery擴展分為對象擴展和jquery本身類擴展:

對象擴展:

(function($){
    $.fn.abc = function(){
        console.log($(this).get(0));
    }
})(jQuery);

使用方法:

$(function(){
    $(".otherdiv").abc();
});

jquery本身類擴展:

(function($){
    $.extend({
        showMsg:function(){
            alert(‘some msg‘);
        }
    });
})(jQuery);

使用方法:

$(function(){
    $.showMsg();
});

為jquery添加擴展標準思路