一、首先组件的获取查找可以通过两种方式去获取
1.通过名称查找节点
//this.owner当前节点
this.LoginBtn = this.owner.getChildByName("LoginBtn"); this.LoginBtn.on(Laya.Event.CLICK,this,this.OnLoginClick);
2.场景中Btn的var设置LoginBtn
控制的脚本UILogin.js继承Laya.scene
场景的Runtime设置为UILogin.js
二、按钮Btn点击事件的监听;
this.LoginBtn.on(Laya.Event.CLICK,this,this.LoginBtnClick);
LoginBtnClick()
{
console.log("登录按钮被点击");
}
最后:
网友评论