ワイズリマインダー

jQueryのプラグインで複数のメソッドを使用する

プラグイン

(function($){
  var methods = {
    init : function(){
      console.log('initial');
    },
    foo : function(){
      console.log('foo');
    },
    bar : function(options){
      console.log(options);
    }
  };

  $.fn.hogehoge = 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 console.log(method);
  };
})(jQuery);

呼び出し

$(selecter).hogehoge();
// initial

$(selecter).hogehoge('foo');
// foo

var opts = { 'spam' : 'ham' };
$(selecter).hogehoge('bar', opts);
// { 'spam' : 'man' }

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

CAPTCHA


このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください

検索

最近のコメント

最近の投稿

タグ

フィード配信

アーカイブ

外部リンク