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

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

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. Browser.document.cookie 怎么存取不了 [ 99%]

Browser.document.cookie 怎么存取不了 想要cookie存取一个标记,因为LocalStorage是在laya.init()之后才能获取值,所以决定用cookie,但是现在改变不了cookie的值 一直是"" 2018-08-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...

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

3. 关于嵌入div [ 97%]

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

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

4. 能够获取cookie,用Laya.Browser.document获取不到,记住密码怎么实现 [ 97%]

能够获取cookie,用Laya.Browser.document获取不到,记住密码怎么实现 2017-12-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 wudi199553 赞同来自: LayaAir下请使用LocalStorage,请参考L...

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

5. 关于嵌入div [ 92%]

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

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

6. TS setExternalLinkEx問題 [ 92%]

...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

7. ts怎么调用input file弹框选择本地文件 [ 91%]

..." id="file"> <script type="text/javascript"> function openFile(){ document.getElementById("file").click(); }   ts里调用 openFile() 弹不出文件选择框 请问该用什么方法   2017-07-06 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...

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

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

...(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

9. 一个方法实现复制到粘贴板 [ 89%]

...ribute('readonly', 'readonly'); input.setAttribute("value",value); Browser.document.body.appendChild(input);   input.select(); input.setSelectionRange(0, value.length+1); if(Browser.document.execCommand("Copy")){ Browser.removeElement(input); }   } 2019-12-16 添加评论 免费帖 --> 分享 微...

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

10. 怎么在模拟点击事件 [ 89%]

...点击事件,可是为什么实现不了,有什么方法吗   Browser.document.getElementById('btn').click(); 2018-02-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 四叶草 赞同来自: 汤启明 这文...

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