jquery封装自己插件的两种方式

1、(function($){    //($)防止$冲突
    $.fn.extend({   //jquery方法
       check: function() {
         return this.each(function() { this.checked = true; });
        },
        uncheck: function() {
         return this.each(function() { this.checked = false; });
        }
        });
    })(jQuery)
 
  
2、(function($){    //防止$冲突
     jQuery.extend({   //工具方法
         min: function(a, b) { return a <  b  ? a : b; },
         max: function(a, b) { return a > b ? a : b; }
     });
})(jQuery)

你可能感兴趣的:(js笔记)