内部関数内でjQuery関数を使用するクラスがあります。jQuery コールバック関数内でメンバー変数を参照するにはどうすればよいですか?
以下のコードを参照してください。
var UriParser = function(uri) {
this._uri = uri; // let's say its http://example.com
};
UriParser.prototype.testAction = function() {
$('a').on('click', function(event) {
// I need the above this._uri here,
// i.e. http://example.com
}
}