如何将函数的上下文应用于任何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
答案 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.a
和foo.b
的定义存在一些问题,因为它们都是自引用this.b +=1
会导致问题,因此您可能希望将功能更改为某些内容例如this._b +=
和alert(this._b)
,或使用不同命名的函数。