同じオブジェクト内で構成されたjqueryボタンクリックからパブリックメソッドを呼び出す方法はありますか?? 以下に、私が試した複数の方法を示します
var myClass = new MyClass();
function MyClass() {
this.func1 = function () {
alert("Hello World");
}
var me = this;
$("#my-button").click(function(){
//func1(); //dont work (wold like)
//this.func1(); //dont work (would like)
me.func1(); //Work! but is not correct way to do it
myClass.func1(); //Work! but the idea its that recognize itself widthout call public instance
});
}
他の方法は??