美文网首页
Laya_按钮添加事件监听

Laya_按钮添加事件监听

作者: SeatonLv | 来源:发表于2019-06-03 10:12 被阅读0次

    一、首先组件的获取查找可以通过两种方式去获取

    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("登录按钮被点击");

        }

    最后:

    相关文章

      网友评论

          本文标题:Laya_按钮添加事件监听

          本文链接:https://www.haomeiwen.com/subject/kxiqxctx.html