function A()
{
this.i = 10;
this.s = "aa";
this.o = new Object();
this.test();
}
A.prototype.test = function()
{
trace("this.s: " + this.s); // 顯示 aa
this.o.fun = function()
{
trace("this.s: " + this.s); // 顯示 undefined
}
this.o.fun();
}
--
您收到此郵件,是因為您訂閱了 Google 網上論壇的「台灣 Adobe 使用者俱樂部 」群組。
如要在此群組張貼留言,請寄電子郵件至 au...@googlegroups.com
如要取消訂閱此群組,請寄電子郵件至 augtw-un...@googlegroups.com
如需更多選項,請造訪此群
組:http://groups.google.com.tw/group/augtw?hl=zh-TW?hl=zh-TW 。
Sent from Kao-Hsiung, Khh, Taiwan