2012-01-20 11 views

答えて

3
var MyClass = new Class({ 
    foo:function(){ 
     var that = this; 
     var = new Fung({ 
      go:function(){ 
       that.bar(); 
      } 
     }); 
    }, 

    bar:function(){ 
     alert('hello world'); 
    } 
}); 
関連する問題