1つのオブジェクトから複数のjQuery用プラグインを作成するにはどうすればよいですか?単一オブジェクトからの複数のjQueryプラグイン
は当初、私が試した:
(function($) {
$.fn.myPlugin = {
plugin_1: function(options) { alert(this.text()); },
plugin_2: function(options) { alert(this.text()); }
}
})(jQuery);
しかし、$('#element').myPlugin.plugin_1();
を行うときに私が得た:this.text is not a function
'this'は' $ .fn.myPlugin'を参照し、選択された要素は参照しません。 –