我在时间线中编写了以下代码。
function chk():void
{
}
this["temp"]=chk;
/* output */
trace(this.chk); //function Function() {}
trace(chk); //function Function() {}
trace(this.temp) //function Function() {}
trace(temp) // Access of undefined property temp.
我已经给出了我得到的输出。我的疑问是为什么 this.temp 与 temp 不同,其中 this.chk 与 chk 相同