そのためには、匿名で関数を渡す必要があります。
this.xId = window.setInterval( function() { this.run() }, 2500 );
または、この関数をコンテキストにバインドすることをお勧めします。this
this.xId = window.setInterval( this.run.bind(this) , 2500 );
ECMA-262、第5版で実装されていることに注意してくださいbind
。したがって、クロスブラウザーの互換性のために、これを追加する必要があります。
if (!Function.prototype.bind) {
Function.prototype.bind = function (oThis) {
if (typeof this !== "function") {
// closest thing possible to the ECMAScript 5 internal IsCallable function
throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");
}
var aArgs = Array.prototype.slice.call(arguments, 1),
fToBind = this,
fNOP = function () {},
fBound = function () {
return fToBind.apply(this instanceof fNOP
? this
: oThis || window,
aArgs.concat(Array.prototype.slice.call(arguments)));
};
fNOP.prototype = this.prototype;
fBound.prototype = new fNOP();
return fBound;
};
}