[]请问用laya的tab模板创建的tab,为啥没有点击事件啊?而且tab标签点击后没有一直处于按下状态
var Loader = laya.net.Loader;
var UI;
Laya.init(600, 400);
Laya.loader.load("res/atlas/template/Tab栏.json", Laya.Handler.create(this, onAssetLoaded2), null, Loader.ATLAS);
function onAssetLoaded2()
{
Laya.class(MyBoot, "MyBootClass", MyBootPage2UI);
UI = new MyBootClass();
Laya.stage.addChild(UI);
}
function MyBoot()
{
MyBoot.super(this);
this.Boot.selectHandler = new Laya.Handler(this, onSelect, null, false);//设置 tab 的选择项发生改变时执行的处理器。
console.log("A123");
function onSelect(index)
{
console.log("当前选择的标签页索引: index= ", index);
}
}
var UI;
Laya.init(600, 400);
Laya.loader.load("res/atlas/template/Tab栏.json", Laya.Handler.create(this, onAssetLoaded2), null, Loader.ATLAS);
function onAssetLoaded2()
{
Laya.class(MyBoot, "MyBootClass", MyBootPage2UI);
UI = new MyBootClass();
Laya.stage.addChild(UI);
}
function MyBoot()
{
MyBoot.super(this);
this.Boot.selectHandler = new Laya.Handler(this, onSelect, null, false);//设置 tab 的选择项发生改变时执行的处理器。
console.log("A123");
function onSelect(index)
{
console.log("当前选择的标签页索引: index= ", index);
}
}
没有找到相关结果
已邀请:
要回复问题请先登录
2 个回复
Monica - 知识达人
赞同来自: lxm75
lxm75
赞同来自: