• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 24 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0033 秒)

1. 打包app,Laya.Browser.document.createElement("script"); 不能用吗? [ 100%]

打包app,Laya.Browser.document.createElement("script"); 不能用吗? var script:any = Laya.Browser.document.createElement("script"); Laya.Browser.document.body.appendChild(script); script.innerHTML = Laya.loader.getRes(this.resourceurl + "res/main.min.js"); h5是没问题的,打包app 并没...

来源: Laya_社区 发布时间: 20171113

2. Layabox web 复制一段文字到剪贴板 [ 87%]

...(str); }  function ShowDiv(str) {  var _this = this;  this.AppConfirm = document.getElementById("AppConfirm"); if (this.AppConfirm == null) { this.AppConfirm = document.createElement("div"); document.body.appendChild(this.AppConfirm); this.AppConfirm.id = "AppConfirm"; }  this.modlueDiv = docume...

来源: Laya_社区 发布时间: 20181214

3. ios上input无法隐藏 [ 77%]

ios上input无法隐藏            var z_file = Laya.Browser.document.createElement("input"); //创建input             var f_file = Laya.Browser.document.createElement("input"); //创建input             z_file.style="filter:alpha(opacity=0);opacity:0;width: 29%;height:11%;";   ...

来源: Laya_社区 发布时间: 20171128

4. TS setExternalLinkEx問題 [ 73%]

...conch && Browser.window.conch.showAssistantTouch(false); var ctx = document.createElement('canvas').getContext('2d'); function render(){ ctx.fillStyle='#99d9ea'; ctx.fillRect(0,0,window.innerWidth,window.innerHeight); window.requestAnimationFrame(render); } window.requestAnimationFrame(rende...

来源: Laya_社区 发布时间: 20180525

5. 打进APP的时候,不能动态加载js [ 72%]

...       trace("进来了");             var fileref:*=Browser.document.createElement('script');             fileref.setAttribute("type","text/javascript");             fileref.setAttribute("src", filename);             trace(fileref);             if (...

来源: Laya_社区 发布时间: 20170321

6. 关于嵌入div [ 72%]

... id="aaaa",现在想把layabox做的东西嵌入到这个div中。 Browser.document.getElementById("aaaa").appendChild(Browser.canvas.source); 这样写发现引擎自身会创建一个layacontainer的div,canvas会被放到这个div中,请问怎么在不修改引擎的代码下可以把canvas添...

来源: Laya_社区 发布时间: 20170421

7. 关于嵌入div [ 72%]

...Browser._container.id="layaContainer";                 Browser.document.body.appendChild(Browser._container);             }             return Browser._container;             },function(value){             Browser._container=value;         }); 20...

来源: Laya_社区 发布时间: 20170419

8. 发布的IOS项目,不能用DOM的一些方法吗?要怎么解决呢 [ 70%]

...essageHandlers 会报错没有这个方法或者对象 比如 var divObj = document.createElement('div'); document.body.appendChild(divObj); divObj.innerHTML = 'xxxxxx id = 'yyyyy'; 这个divObj 没显示出来 document.querySelector('#yyyyy')获取不到 2018-05-22 添加评论 免费帖 --> 分享...

来源: Laya_社区 发布时间: 20180522

9. 如何使用h5打开本地文件的浏览窗口? [ 70%]

...附上一个小Demo,大家可以参考! /*[IF-SCRIPT-BEGIN]('var file= document.createElement("input")');('file.type = "file"'); ('document.body.appendChild(file)'); ('file.style.zIndex = 999999'); ('file.style.position = "absolute"'); ('file.style.top = 20'); ('document.body.appendChild(file);'...

来源: Laya_社区 发布时间: 20160216

10. 如何动态在index.html加入script [ 68%]

...vascript" src="main.js"></script> <script> var gameCanvas = document.getElementById("layaCanvas"); if ((sys.platform !== sys.DESKTOP_BROWSER)) { gameCanvas.style.position = "fixed"; } else { gameCanvas.style.position = "static"; } html5Full.toLandscape(); </script>  这边,...

来源: Laya_社区 发布时间: 20180129