メソッドshowAlert()を呼び出す方法プラグインへの参照をこの変数と$(this)を使ってself変数内に格納しようとしましたが、動作しないようです。ボタンのクリックイベントの中からshowAlertを呼び出しています。jqueryプラグイン内のスコープの問題
(function($){
//Add your default settings values here
var settings = {
//Replace with your own settings
testValue:"FOO"
}
var selectedArr=[];
var self=this;
var methods = {
init : function(options){
return this.each(function(){
//if options exists, let's merge them with our default settings
if(options){
$.extend(settings,options);
}
var $this=$(this);
var button = $this.find('.schedule .time a');
button.click(function(evt){
evt.preventDefault();
selectedArr.push($(this).addClass('selected'));
$(this).parent().find('input').attr('checked','checked');
self.showAlert();
})
});
}
}
showAlert: function(){
alert("Please select an alternitive");
}
//Setting namespace. Under no circumstance should a single plugin ever claim more than one namespace in the jQuery.fn object.
//See http://docs.jquery.com/Plugins/Authoring for an explaination of the method used here
$.fn.chooseAppointment = function(method){
if(methods[method]){
return methods[method].apply(this,Array.prototype.slice.call(arguments,1));
}else if(typeof method === 'object' || !method){
return methods.init.apply(this,arguments);
}else{
$.error('Method ' + method + ' does not exist on jQuery.chooseAppointment');
}
};
})(jQuery);
しかし、私はボタンイベントからどのように呼び出すのですか – Chapsterj
これを使う必要はありません。 – Chapsterj
なぜあなたはそれの前にvarを使用する必要がありますか?私が私の例のようにvarを外したら、どういう意味でしょう。 varなしのスコープはどれですか? – Chapsterj