首先,请参阅我的代码。
function test(){
this.item = 'string';
this.exec = function(){
something();
}
function something(){
console.log(this.item);
console.log('string');
}
}
我上课并调用'exec函数',就像这段代码
var t = new test();
t.exec();
但结果是...
undefined
string
我想从某个功能访问 test.item。
你有什么解决办法吗?