jQuery扩展 插件制作简介

jQuery.fn.extend(object)

查看Plugins/Authoring可以获取更多信息。
jQuery.fn.extend({
      isCheck: function() {
    return this.each(function() { this.checked == true; });
  },
  isUncheck: function() {
    return this.each(function() { this.checked == false; });
  }
});
$("input[type=checkbox]").isCheck();
$("input[type=radio]").isUncheck();
//========================================================================================================================
jQuery.extend({
  min: function(a, b) { return a < b ? a : b; },
  max: function(a, b) { return a > b ? a : b; }
});

jQuery.min(2,3); // => 2
jQuery.max(4,5); // => 5



你可能感兴趣的:(jquery,插件,扩展)