0
我需要你的幫助。如何使內部類的屬性採用父類屬性的值?
我的問題是如何使內部類屬性有父類的屬性
function drawSvg(element)
{
this.x= 0;
this.y=0;
this.strockeColor="#FFF";
this.fillColor= "#000";
this.darwCircle= function()
{
this.x = parent.x;//here what I have to do to make the x of darwCircle take the vale of drawSvg x
}
}
的價值觀在我上面的例子,我不知道的是,我應該把這樣做的代碼?
'strockeColor'可能是一個錯字... –
我希望'darwCircle'不是一堂課?你打算如何使用這些代碼? – Bergi
'drawCircle'是'drawSvg'的一種方法,所以'this'在兩個上下文中都是相同的。 –