Skip to content

Instantly share code, notes, and snippets.

@tamtam180
Created June 19, 2012 08:23
Show Gist options
  • Save tamtam180/2953002 to your computer and use it in GitHub Desktop.
Save tamtam180/2953002 to your computer and use it in GitHub Desktop.
どーすりゃよいのでござるか・・
function Hoge() {
}
Hoge.ptototype = {
kwd : [],
doFuga : function() {
var jqxhr = this.fetchKwd(); // 何かしらのajax
jqxhr.success(function(){
// ここで kwdにアクセスしたい...
});
}
};
// thisだとjqueryのものが返ってくる..
// Javaで言うところのHoge.thisみたいな
/*
こうやるしかない?
var mthis = this;
jqxhr.success(function(){
// ここで kwdにアクセスしたい...
alert(mthis.kwd);
});
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment