Core/API/jQuery
jQuery.fn.extend(object)
jQueryエレメントに独自の新しいメソッドを追加する。(典型的なjQueryプラグインの作成方法)
- object
- ObjectjQueryオブジェクトにマージされる新たなメソッドを有したオブジェクト
引数
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
jQueryオブジェクトに、新たに「全てチェック状態にする」「全て非チェック状態にする」メソッドを追加
jQuery.fn.extend({ check: function() { return this.each(function() { this.checked = true; }); }, uncheck: function() { return this.each(function() { this.checked = false; }); } }); $("input[@type=checkbox]").check(); $("input[@type=radio]").uncheck();
[全コードを表示]
[実行結果を単体で表示]