如何从定义函数而不是调用对象访问变量状态

时间:2011-04-11 14:11:30

标签: javascript

例如:

func = (){

    var i_want_this = "yes";

    var callback = function(){
        // I want to access value of i_want_this here
        // Preferably just the single variable without the whole scope
    };

    obj.subfunc(some_stuff, callback);

};


obj = {

    subfunc = function(stuff, callback){

        // do stuff

        callback();

    }

};

func();

1 个答案:

答案 0 :(得分:5)

您可以在回调中使用该变量;它会以你想要的方式工作。

这称为closure