var f = function() {
this.m = '10' ;
f1 = function(){
alert(m)
}
}
o = new f()
o.m
f1()
这是从上面的例子中调用嵌套函数f1的正确方法吗
答案 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'
当前的方式会导致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