大约有 27 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0027 秒)
...新进度条 伪代码如下: ```javascript var nPercent=0; var image1 = document.createElement('img'); image1.onload=function() { if(window.loadingView){ nPercent+=33; window.loadingView.loading(nPercent); } } image1.src = "a.png"; var image2 = document.createElement('img'); image2.onload=functio...
来源: Laya2.0_文档 发布时间: 20210715
...ctor 赞同来自: //登录callBack function loginComplete(){ var script = document.createElement('script'); script.type = "text/javascript"; script.src = '..src/game.js'; document.body.appendChild(script); } index.html里只先引入login.js,执行登录操作后再动态创建game.js。 2018-11-...
来源: Laya_社区 发布时间: 20181107
...Percent)更新进度条。 伪代码如下: var nPercent=0; var image1 = document.createElement('img'); image1.onload=function() { if(window.loadingView){ nPercent+=33; window.loadingView.loading(nPercent); } } image1.src = "a.png"; var image2 = document.createElement('img'); image2.onload=functio...
来源: Laya3.0_文档 发布时间: 20241024
... @sky_fly:你的感觉是错的,添加标签类似如下: var script = document.createElement("script"); document.head.appendChild(script); 检查下你的逻辑代码有没有问题。 sky_fly • 2017-04-07 15:35 @yudicoming:发布以前测试是好的,发布后那个script是没...
来源: Laya_社区 发布时间: 20170407
...附上一个小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
... 微博 QZONE 微信 Life | Growing up 赞同来自: 你用 Laya.Browser.document.body.appendChild(); DOM方式可以用ClipboardJS 但是如果你的按钮是个UI组件 就没法了 这是硬伤 想了N多办法都不行 因为浏览器copy机制 你必须点击按钮一下才能复制 哪...
来源: Laya_社区 发布时间: 20180626
...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
...过Url获取具体脚本代码 if (moduleJs) { __JS__("var script = document.createElement('script');") __JS__(" script.type = 'text/javascript';") __JS__(" script.text = moduleJs;") __JS__(" document.body.appendChild(script);") } chunjine • 2017-03-17 12:43...
来源: Laya_社区 发布时间: 20161020
...ttp://119.29.138.145/bgame/index.html(游戏地址 正式服) var iframe = document.createElement("iframe"); iframe.id = "iframe"; iframe.name = "iframe"; iframe.frameBorder = "no"; iframe.marginwidth="0px"; iframe.marginheight="0px" ; iframe.scrolling = "no"; iframe.border="0px" iframe.style.positi...
来源: Laya_社区 发布时间: 20161221
...的,因为图表框架是根据父容器改变大小的 __JS__("var div=document.createElement('div')"); __JS__("div.style.width='400px'"); __JS__("div.style.height='400px'"); // 相对父级定位,并在最上方显示 __JS__("div.style.position='absolute'"); __JS__("div.style.zIndex=100"); // ...
来源: Laya_社区 发布时间: 20170109