大约有 18 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0030 秒)
MovieClip的target和currentTarget属性为undefined? private function showNowPic():void{ for each(var ul:String in pics){ var mc:MovieClip = new MovieClip; mc.load(ul); this.addChild(mc); mc.on(Event.COMPLETE,this,stopNowMC) } } private function stopNowMC(e:Event):void{ trace(e.currentTarget); t...
来源: Laya_社区 发布时间: 20161221
...t TouchEvent] game.js:116 touchId=0 game.js:116 type=mousemove game.js:116 currentTarget=[object Object] game.js:116 target=[object Object] game.js:116 setTo=function (type,currentTarget,target){ this.type=type; this.currentTarget=currentTarget; this.target=target; return this; } game.js:116 stopPro...
来源: Laya_社区 发布时间: 20181031
a、b 两个按钮响应同一个点击回调,但event的 target和currentTarget相同都是stage对象,怎么解释呀 实际代码中,两个按钮通过currenttarget,确实能够区分开来,但是打印的值,currenttarget和target值都是stage对象,这个问题谁能给解释下...
来源: Laya_社区 发布时间: 20180301
...! function bigclick(e){ var thex = e.target.mouseX }把e.target改成e.currentTarget,target点击的是最底层显示对象,e.currentTarget是点击的当前显示对象,有问题我们再沟通! 2016-08-08 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复...
来源: Laya_社区 发布时间: 20160808
...: 连接出错 Event {isTrusted: true, type: "error", target: WebSocket, currentTarget: WebSocket, eventPhase: 2…} 关闭事件 CloseEvent {wasClean: false, code: 1006, reason: "", type: "close", target: WebSocket…} //----------------------------------------------------------------------------...
来源: Laya_社区 发布时间: 20180211
...private onBtnClick(event:Laya.Event): void { let b = event.currentTarget as Laya.Image; console.log('onClickLevel > ' + b.skin); this.removeSelf(); Laya.stage.addChild(new GameMainView()); } 我要怎么从点击的时候传参,然后在点击后的舞台上接受参...
来源: Laya_社区 发布时间: 20190802
... xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","../atlas/comp.json"); xmlreq.send() }, false); 这个例子是在worker中进行加载文件,加载完毕传给主进程,运行这个例子可以在浏...
来源: Laya3.0_文档 发布时间: 20241014
...ay.Sprite; /** 事件当前冒泡对象。*/ currentTarget: laya.display.Sprite; _stoped: boolean; /** 分配给触摸点的唯一标识号(作为 int)。*/ touchId: number; /**键盘值*/ ke...
来源: Laya_社区 发布时间: 20170601
... xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` 这个例子是在worker中进行加载文件,加载完毕传给主进程,运行这个例子可以...
来源: Laya2.0_文档 发布时间: 20210715
... xmlreq.responseType = "text"; xmlreq.onload = function (e) { var data = e.currentTarget.response; self.postMessage(data); } xmlreq.open("get","res/atlas/comp.json"); xmlreq.send() }, false); ``` 这个例子是在worker中进行加载文件,加载完毕传给主进程,运行这个例子可以...
来源: Laya2.0_文档 发布时间: 20210715