クリック イベント内でオブジェクトを取得しようとしています。ここで何が間違っていますか?this.section は各ボタンのインデックスです。
this.ebutton = jQuery('.episode_button');
this.button = this.ebutton.eq(this.section);
this.listtext = 'testbutton';
this.button.parobj = this;
this.button.bind('click', function() {
alert(this.parobj.listtext());
});
ボタン イベント内でプロパティの listtext を取得するにはどうすればよいですか?