继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

jQuery插件开发中$.extend和$.fn.extend辨析

慕UI4062818
关注TA
已关注
手记 348
粉丝 97
获赞 552

 jQuery插件开发分为两种:


1 类级别

类级别你可以理解为拓展jquery类,最明显的例子是$.ajax(...),相当于静态方法。

开发扩展其方法时使用$.extend方法,即jQuery.extend(object); 

 

$.extend({ 

       add:function(a,b){return a+b;} ,

       minus:function(a,b){return a-b;} 
}); 

页面中调用:

var i = $.add(3,2);

var j = $.minus(3,2);


2 对象级别

对象级别则可以理解为基于对象的拓展,如$("#table").changeColor(...); 这里这个changeColor呢,就是基于对象的拓展了。

开发扩展其方法时使用$.fn.extend方法,即jQuery.fn.extend(object); 

$.fn.extend({

        check:function(){
              return this.each({
                   this.checked=true;
             });
        },
       uncheck:function(){
              return this.each({
                    this.checked=false;
             });
       }
});

页面中调用:

$('input[type=checkbox]').check();
$('input[type=checkbox]').uncheck();


3、扩展

$.xy = {
add:function(a,b){return a+b;} ,
minus:function(a,b){return a-b;},
voidMethod:function(){
    funciton method(){
        alert("void");
    }
    return method();
  }
};
var i = $.xy.add(3,2);
var m = $.xy.minus(3,2);
$.xy.voidMethod();

 

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP