在javascript中调用内部函数的最佳方法

时间:2012-07-04 08:09:52

标签: javascript

var f = function() {
   this.m = '10' ; 
   f1 = function(){
        alert(m)
    }
}

o = new f()
o.m

f1()

这是从上面的例子中调用嵌套函数f1的正确方法吗

2 个答案:

答案 0 :(得分:5)

我假设您希望f1成为f的方法,在这种情况下,您需要将其添加为属性(就像您为m所做的那样):< / p>

var f = function() {
   this.m = '10'; 
   this.f1 = function(){
       alert(this.m); //Notice that this has changed to `this.m`
   };
}; //Function expressions should be terminated with a semicolon

然后,您可以在f

的实例上调用该方法
o = new f();
o.f1(); //Alerts '10'

这是working example

当前的方式会导致f1泄漏到全局范围内(因为它是在没有var语句的情况下声明的。)


旁注:通常优先考虑prototype的方法属性。这导致内存中的函数的单个副本,而不是每个实例的副本:

var f = function() {
   this.m = '10';
};

f.prototype.f1 = function() {
    alert(this.m);  
};

答案 1 :(得分:2)

使用您的代码,该函数是一个内部函数,不能从外部调用。如果在构造函数中调用它,则必须将f1赋给对象:

this.f1 = function() {
  alert(m);
}

然后你可以打电话:

o = new f()
o.f1() //=> alerts 10