大约有 398 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
Laya_社区(348) Laya2.0_文档(29) Laya3.0_文档(10) Laya_示例(4) Laya2.0_示例(4) laya_api(1) Laya3.0_api(1) Laya2.0_api(1)
...置一致,这里我们默认在0点位置; var file:Object = Browser.document.createElement("input"); //设置file的样式 file.style="filter:alpha(opacity=0);opacity:0;width: 150px;height:60px;"; file.type ="file";//设置类型是file类型。 file.accept="image/png";//设置文件的格式...
来源: Laya_社区 发布时间: 20180529
...ipt:* = Browser.createElement("script"); script.id = "serverlist"; Browser.document.head.appendChild(script); script.src = url; script.type = "get"; Browser.window[callbackName] = callback; //loading Main.tl.startLoad(); } private function callback(data:*):void { //移除 var script:* = Browser.getE...
来源: Laya_社区 发布时间: 20180209
...,100); var script:any = Laya.Browser.createElement("script"); Laya.Browser.document.body.appendChild(script); script.src = "http://localhost:9090/?a=1"; } public static onComplete():void{ console.log("JSONP执行到这里"); } } new LayaSample(); ``` ```java var script:any = Laya.Browser.createEleme...
来源: Laya2.0_文档 发布时间: 20210715
...(100,100); var script = Laya.Browser.createElement("script"); Laya.Browser.document.body.appendChild(script); script.src = "http://localhost:9090/?a=1"; } LayaSample.onComplete = function(){ console.log("JSONP执行到这里"); } return LayaSample; })(); new LayaSample(); ``` ```java var script = La...
来源: Laya2.0_文档 发布时间: 20210715
...t'){meta.content=content;flag=true;break;}i++;}; /*__JS__ */if(!flag){meta=document.createElement('meta');meta.name='viewport',meta.content=content;document.getElementsByTagName('head')[0].appendChild(meta);}; 我直接注释掉laya.core.js里的这3行 貌似可以了
来源: Laya_社区 发布时间: 20160501
...aya.init(100,100); var script:* = Browser.createElement("script"); Browser.document.body.appendChild(script); script.src = "http://localhost:9090/?a=1"; } public static function onComplete():void{ trace("JSONP执行到这里"); } } } ``` ```java var script:* = Browser.createElement("script");//这...
来源: Laya2.0_文档 发布时间: 20210714
...wugs • 2018-06-11 11:53 private loadJs(jsPAth, fun) { var new_element1 = document.createElement("script");//创建新的script节点 new_element1.setAttribute("type", "text/javascript"); // new_element1.setAttribute("src", jsPAth); //LayaNative不支持 new_...
来源: Laya_社区 发布时间: 20180608
...回复 Laya_Aaron 赞同来自: 题主已经自行解决了,直接设置 document.body.style.overflow="hidden";超出截断,没有滚动条了 2019-05-16 0 0 分享 微博 QZONE 微信 Laya_Aaron 赞同来自: 这个浏览器层面的滚动条,与引擎是无关的。 2019-05-14 0 4 分享 微...
来源: Laya_社区 发布时间: 20190514
...s\src",编译后的module.js生成均只有以下内容 (nction(window,document,Laya){ var __un=Laya.un,__uns=Laya.uns,__static=Laya.static,__class=Laya.class,__getset=Laya.getset,__newvec=Laya.__newvec; })(window,document,Laya); 2017-02-09 0 0 分享 微博 QZONE 微信 joe51586 赞同...
来源: Laya_社区 发布时间: 20170204
...','aa'); trace(a.get('test')); } } }生成的分包test.js(function(window,document,Laya){ var __un=Laya.un,__uns=Laya.uns,__static=Laya.static,__class=Laya.class,__getset=Laya.getset,__newvec=Laya.__newvec; var Stage=laya.display.Stage,TestAA=aa.TestAA; //class test.AAA var AAA=(function(){ functio...
来源: Laya_社区 发布时间: 20170322