プラグインの開発に jQuery Boilerplate を使用してきましたが、プラグインの外部からメソッドを呼び出す方法がわかりません。
参考までに、私が話している定型コードは次のとおりです。 http://jqueryboilerplate.com/
私のフィドルでは、
コードは次のとおりです。
;(function ( $, window, document, undefined ) {
var pluginName = 'test';
var defaults;
function Plugin(element, options) {
this.element = element;
this.options = $.extend( {}, defaults, options) ;
this._name = pluginName;
this.init();
}
Plugin.prototype = {
init: function() {
this.hello();
},
hello : function() {
document.write('hello');
},
goodbye : function() {
document.write('goodbye');
}
}
$.fn[pluginName] = function ( options ) {
return this.each(function () {
if (!$.data(this, 'plugin_' + pluginName)) {
$.data(this, 'plugin_' + pluginName,
new Plugin( this, options ));
}
});
}
})( jQuery, window, document );
$(document).ready(function() {
$("#foo").test();
$("#foo").test('goodbye');
});
次の構文を使用してさようならメソッドを呼び出そうとしています。
$("#foo").test('goodbye')
どうすればこれを達成できますか? 前もって感謝します