为jquery添加扩展标准思路

Posted 龍飛鳯舞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为jquery添加扩展标准思路相关的知识,希望对你有一定的参考价值。

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添加扩展标准思路的主要内容,如果未能解决你的问题,请参考以下文章