我有一个在其内部函数中使用 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
}
}