Javascript オブジェクトについて質問があります。親クラスのプロパティにアクセスするにはどうすればよいですか?
function randomObj() // for example button obj
{
this.text = "this is obj";
}
function parentClass()
{
this.name = "parent";
this.subObj;
}
parentClass.prototype.generate = function()
{
this.subObj = new randomObj();
this.subObj.changeParentClassName = function() // button obj wants to change name
{
this.name = "not parent";
}
}
var sampleObj = new parentClass();
sampleObj.generate();
sampleObj.subObj.changeParentClassName (); // does not works
「changeParentClassName」の「this」は subObj のようですが、parentclass.name にアクセスするにはどうすればよいですか?