将函数的上下文应用于javascript变量?

时间:2012-09-16 00:45:05

标签: javascript

如何将函数的上下文应用于任何javascript对象?所以我可以改变“this”在函数中的含义。

例如:

var foo = {
    a: function() {
           alert(this.a);
      },
    b: function() {
           this.b +=1;
           alert (this.b);
      }

var moo = new Something(); // some object 
var moo.func.foo = foo; // right now this is moo.func
// how do I apply/change the context of the foo functions to moo?
// so this should equal moo
moo.a(); // this should work

1 个答案:

答案 0 :(得分:2)

您可以在moo上设置功能:

var moo = new Something();
moo.a = foo.a;
moo.a();

...但如果您希望它由Something的所有实例继承,则需要在Something.prototype上设置:

var moo;
Something.prototype = foo;
moo = new Something();
moo.a();

您对foo.afoo.b的定义存在一些问题,因为它们都是自引用this.b +=1会导致问题,因此您可能希望将功能更改为某些内容例如this._b +=alert(this._b),或使用不同命名的函数。