1
我有一個在其內部函數中使用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
}
}