Skip to content

Instantly share code, notes, and snippets.

@yamamoto-febc
Created June 12, 2012 13:39
Show Gist options
  • Save yamamoto-febc/2917570 to your computer and use it in GitHub Desktop.
Save yamamoto-febc/2917570 to your computer and use it in GitHub Desktop.
javascript docment2
var el = $(".selector");
var controller = new MyWidget(el);//コントローラの生成
console.log(controller.options.message);
//"Remove Me"と出力される
//パラメータを指定してコントローラ生成
controller = new MyWidget(el, {message : "Don't Remove Me" } );
console.log(controller.options.message);
//"Don't Remove Me"と出力される
//defaultsにないパラメータを指定してコントローラ生成
controller = new MyWidget(el, {message : "Touch Me" , title : "MyTitle" } );
console.log(controller.options.title);
//"MyTitle"と出力される
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment