欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

返回值:jQueryjQuery.fn.extend(object)

概述

擴展 jQuery 元素集來提供新的方法(通常用來制作插件)。

查看這里<a title="Plugins/Authoring">Plugins/Authoring</a>可以獲取更多信息。

參數(shù)

objectObjectV1.0

用來擴充 jQuery 對象。

示例

描述:

增加兩個插件方法。

jQuery 代碼:
jQuery.fn.extend({
  check: function() {
    return this.each(function() { this.checked = true; });
  },
  uncheck: function() {
    return this.each(function() { this.checked = false; });
  }
});
結(jié)果:
$("input[type=checkbox]").check();
$("input[type=radio]").uncheck();