[]怎样获取父类?

//我在这个类里添加一个页面TipsView为子类
...
...
var tipView = new TipsView();
this.addChild(tipView);
 

function enterNextScene() {

}
...
...
 
 
 //这个是TipsView.js类,我想在这个类里调用上面那个父类里enterNextScene的方法,如何获取到上面那个父类呢?
var TipsView = (function (_super){
function TipsView(params) {
TipsView.super(this);

this.sure.on(Laya.Event.MOUSE_UP,this,onSure);
function onSure(params) {

}

}
Laya.class(TipsView,"TipsView",TipsViewUI);
return TipsView;
})();
 
已邀请:

15818760256

赞同来自:

在onSure这个方法里调用父类的enterNextScene方法。。我看好像没有getParent的方法啊?

Monica - 知识达人

赞同来自:

xx.parent

15818760256

赞同来自:

微信图片_20171017152535.png

 

要回复问题请先

商务合作
商务合作