[]事件函数作用域问题
1. this.btn_Login.on(Laya.Event.CLICK, null, ()=>{
if (this.loginDig)
{
this.loginDig.removeSelf();
this.loginDig.destroy();
}
2.this.btn_ok.on(Laya.Event.RIGHT_CLICK, this, this.OnBut_Open);
OnBut_Open() : void {
this.removeSelf();
this.destroy();
}
就是这两个函数,是不是就是使用lamb表达式就要使用null,不是匿名就是使用this
if (this.loginDig)
{
this.loginDig.removeSelf();
this.loginDig.destroy();
}
2.this.btn_ok.on(Laya.Event.RIGHT_CLICK, this, this.OnBut_Open);
OnBut_Open() : void {
this.removeSelf();
this.destroy();
}
就是这两个函数,是不是就是使用lamb表达式就要使用null,不是匿名就是使用this
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
cuixueying
赞同来自: