大约有 22 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0059 秒)
...fer.join("\n")); document.getElementById("sendButton").onclick = function() { if (ws != null) { //发送SubmitBetInfo请求 var submitBetInfo_obj = new Object(); var userBetList=[]; ...
来源: Laya_社区 发布时间: 20170724
...444",400,400); createDialog("555",500,500); Laya.stage.on(Event.CLICK,this,onClick); } private function onClick():void { alert(Dialog.manager.numChildren+"");//manager是DialogManager的实例,创建多少个dialog,manager下就有多少的子对象 var dia:Dialog=Dialog.manager.getChildAt(2) as...
来源: Laya_社区 发布时间: 20170606
..., Laya.stage.height - 50 * Browser.pixelRatio); btn.on(Event.CLICK, _this, onclick); Laya.stage.addChild(btn); Laya.stage.on(Event.RESIZE, null, function():void { btn.pos(Laya.stage.width / 2 - btn.width * Browser.pixelRatio / 2, Laya.stage.height - 50 * Browser.pixelRatio); }); })); } private funct...
来源: Laya_社区 发布时间: 20170209
...heckBox 对象的显示位置。 checkBox.clickHandler = new Handler(this, onClick, [checkBox]);//设置 checkBox 的点击事件处理器。 Laya.stage.addChild(checkBox);//将此 checkBox 对象添加到显示列表。 } private function onClick(checkBox:CheckBox):void { trace("输出选中状态:...
来源: Laya3.0_api 发布时间: 20231115
...ew中的一个button(比如but1)的click事件呢?类似html里面的onclick
来源: Laya_社区 发布时间: 20181027
...") console.log(e) clipboard.destroy(); }) //确认按钮 this.confirmBtn.onclick = function () { _this.CloseDivAndInfoMesg(this); } // 创建弹出层 遮罩层 等 if (!document.getElementById("mask") && 1) { //mask div this.newMask.id = "mask"; this.newMask.style.position = "absolute"; t...
来源: Laya_社区 发布时间: 20181214
...ault class btn1 extends Laya.Script { constructor(){super();} onEnable(){} onClick(){ alert("id="+this.id); //这里有一个id,但是系统自动生成的,无法获知这个id代表哪个按钮被点(因为我有4个按钮都绑了这个js) alert("name="+this.name); //未定义不知道怎...
来源: Laya_社区 发布时间: 20181029
...行 */ onKeyUp?(evt: Event): void; 和老版本比较,有如下改变 1) onClick 名字变更为 onMouseClick 2) onDoubleClick 名字变更为 onMouseDoubleClick 3) 删除了onStageMouseDown,onStageMouseUp,onStageClick,onStageMouseMove 4) 删除了onMouseEnter,它与onMouseOver重复。 4...
来源: Laya3.0_文档 发布时间: 20230406
...Buffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate); window.onclick = function() { // Fill the buffer with white noise; //just random values between -1.0 and 1.0 for (var channel = 0; channel < channels; channel++) { // This gives us the actual ArrayBuffer that contains the data var n...
来源: Laya2.0_文档 发布时间: 20210715
...Buffer = audioCtx.createBuffer(2, frameCount, audioCtx.sampleRate); window.onclick = function() { // Fill the buffer with white noise; //just random values between -1.0 and 1.0 for (var channel = 0; channel 总结:可以看到 web的声音功能越来越强大,假如不考虑某些低端机的兼...
来源: Laya2.0_文档 发布时间: 20210715