我的小脚本有问题。
function test() {
this.arr = new Array('a','b','c');
this.func = function() {
//Do something with this.arr. But it's undefined.. WHY???
}
this.Start = function() {
this.Interval = setInterval(this.func, 1000);
}
}
var Test = new test();
Test.Start();
当我尝试对“func”中的数组做任何事情时,它一直告诉我,数组是未定义的。为什么?