大约有 23 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0030 秒)
...的实现方式吗?(*^__^*) 嘻嘻…… Morn UI下的List组件提供了mouseHandler方法,该方法的回调方法会返回2个参数,一个是事件类型,一个是当前你所点击列表的索引值。根据索引值即可判断你点击的是哪一条列表,并根据该索引写下...
来源: Laya_社区 发布时间: 20151224
... not a function" weiyongwill • 2017-01-06 14:39 经过测试在List.mouseHandler中点其他的元素都能通过e.target.name获取到名字,唯独textinput通过e.target.name获取到名字为空,而且e.type为mousedown,希望能够提供一个demo能够读取到list中的textinput...
来源: Laya_社区 发布时间: 20170105
... 170*****650 赞同来自: 方法很多,你也可以直接启用list的mouseHandler ,获取选择的item项,直接修改 2018-04-21 0 0 分享 微博 QZONE 微信 apmhot 赞同来自: 想要的效果是没有响应事件,随时间自动变化 2018-04-21 0 0 分享 微博 QZONE 微信 170**...
来源: Laya_社区 发布时间: 20180420
...的,与事件无关,你想添加什么事件?list自身就有一个mouseHandler函数,所有的事件都可以在里面处理! 2017-09-12 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 ckndim 相关问题 分享:自定义事...
来源: Laya_社区 发布时间: 20170912
...st.mouseEnabled = true; cardList.mouseHandler = new Handler(this, onSelect, [cardList]); // 只能用new Handler? 不能用 Handler.create // Handler.create(this, onSelect, [cardList]); ...
来源: Laya_社区 发布时间: 20170310
...动条会引起单元格上的按钮点击后多次触发点击事件 tree mouseHandler 怎么获取条目 微信小游戏上线了,但凑不够需要的用户量咋办,有人有解决办法么 我用list.array=Array;数据全部插进去数组里了,但是list中没有完全展示数组数据,...
来源: Laya_社区 发布时间: 20180809
...0 0 分享 微博 QZONE 微信 han123peng 赞同来自: 我自己解决了,mouseHandler,可以接收所有事件,在这里面判断是否有点击事件。 2018-05-24 0 3 分享 微博 QZONE 微信 dz5566 赞同来自: 改源码方案可以这样: laya.ui.js改成这样即可,去掉判断if (t...
来源: Laya_社区 发布时间: 20180507
...ctHandler = Laya.Handler.create(this,this.onSelect,null,false); this.sList.mouseHandler = new Laya.Handler(this,this.onMouse);//鼠标事件响应 } Laya.class(ServerListView,"ServerListView",_super); var _proto_ = ServerListView.prototype; //选择列表项时的相应时间,参数index是选中...
来源: Laya_社区 发布时间: 20170805
...llBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, this.onMouse) } onOpened(param: any) { super.onOpened(param); let imgArray = ; for (let i = 1; i < 7; i++) { imgArray.push(`ui/bg_help_0${i}.png`) } this.list_rule.array = imgArray; } ...
来源: Laya_社区 发布时间: 20171202
...llBar.changeHandler = new Laya.Handler(this, this.onChange) this.list_rule.mouseHandler = new Laya.Handler(this, this.onMouse) } onOpened(param: any) { super.onOpened(param); let imgArray = []; for (let i = 1; i < 7; i++) { imgArray.push(`ui/bg_help_0${i}.png`) } this.list_rule.array = imgArray; ...
来源: Laya_社区 发布时间: 20181112