jQueryの既存の関数を拡張するプラグインを作成しようとしています。既存のjQuery関数を拡張する
(function($)
{
$.fn.css = function()
{
// stuff I will be extending
// that doesn't affect/change
// the way .css() works
};
})(jQuery);
.css()
機能を拡張する必要があるビットはほんの少しです。あなたはclassName extend existingClass
ができるのでPHPクラスについて考えていたので、jQuery関数を拡張できるかどうかを尋ねています。
あなたは何を追加しますか? –