大约有 15 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0028 秒)
...件ontouchstart,ontouchend等事件 如题,我可以如下为button加上onclick的监听事件。this.btn_CloseWebiFrame = laya.utils.Browser.window.document.createElement('button'); this.btn_CloseWebiFrame.onclick = () => { console.log("onclick"); }; oncontextmenu也没有问题。this.img_...
来源: Laya_社区 发布时间: 20180126
...博 QZONE 微信 LT 赞同来自: var btn:Button;btn.on(Event.CLICK, this, onClick); private function onClick():void { console.log(); } 基本就是这个套路加响应事件=。= 官方demo含糊不清的看得累 2018-07-18 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 ...
来源: Laya_社区 发布时间: 20180717
...btn2); btn1.on(Event.CLICK,this,onClick); btn2.on(Event.CLICK,this,onClick); Laya.loader.load([{url: "res/atlas/common.atlas", type: Loader.ATLAS}]); ...
来源: Laya_社区 发布时间: 20180425
...时执行了别的点击事件,例如 <button id="button1" onclick="button1();">点击事件1</button> <input accept="image/*" id="file" type="file" /> <script> function button1(){ document.getElementById('file').click(); } ...
来源: Laya_社区 发布时间: 20180228
...(btnAdd); btnAdd.x=550; btnAdd.label='ADD1000'; btnAdd.on(Event.CLICK,this,onClick,[sp,panel]); } private function onClick(sp:Sprite,panel:Panel):void { trace('Add1000'); for(var i:int=0;i<1000;i++) { var button:Button=new Button('button-4.png'); button.label='button:'+i; sp.addChild(button); but...
来源: Laya_社区 发布时间: 20170601
....btn = this.createBtn(this.skin); this.btn.on(Laya.Event.CLICK, this, this.onClick); })); } /** * 创建btn */ private createBtn(skin: string): Laya.Button { let button = new Laya.Button(skin, '上传文件'); button.labelSize = 12; button.labelColors = '#000000,#000000,#000000'; Laya.stage.addChild...
来源: Laya_社区 发布时间: 20170511
... lh文件内meshSprite添加阴影属性无效 请问在HTMLDivElement中onclick属性应当怎么用呢? Native端的设备属性不对 layaMaxUI里面永远只会生成一个TestSceneUI,其他自定义的scene不会导出 textinput有没有类似placeholder的属性 属性无法获取 tiledMap问...
来源: Laya_社区 发布时间: 20181024
...内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 淡蓝 onclick(e:Event){ e.stopPropagation(); } 2018-09-03 1 1 分享 微博 QZONE 微信 晓风残月 赞同来自: button上设置mousethrough 有用没? 2018-09-06 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回...
来源: Laya_社区 发布时间: 20180903
...用select()方法没有效果。 B.text = "123456"; A.on(Event.CLICK,this,OnClick); private function OnClick():void { B.select(); } 2017-05-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixu...
来源: Laya_社区 发布时间: 20170525
...fer.join("\n")); document.getElementById("sendButton").onclick = function() { if (ws != null) { //发送SubmitBetInfo请求 var submitBetInfo_obj = new Object(); var userBetList=[]; ...
来源: Laya_社区 发布时间: 20170724