博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Sencha touch 中的一段源码匿名中定义Function并调用
阅读量:6824 次
发布时间:2019-06-26

本文共 1777 字,大约阅读时间需要 5 分钟。

1 /*  2   3 This file is part of Sencha Touch 2  4   5 Copyright (c) 2012 Sencha Inc  6   7 Contact:  http://www.sencha.com/contact  8   9 Commercial Usage 10 Licensees holding valid commercial licenses may use this file in accordance with the Commercial Software License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Sencha. 11  12 If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. 13  14 */  15 (function() {  16     function write(content) {  17         document.write(content);  18     }  19   20     function meta(name, content) {  21         write('
'); 22 } 23 24 var xhr = new XMLHttpRequest(); 25 xhr.open('GET', 'app.json', false); 26 xhr.send(null); 27 28 var options = eval("(" + xhr.responseText + ")"), 29 scripts = options.js || [], 30 styleSheets = options.css || [], 31 i, ln, path; 32 33 meta('viewport', 'width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no'); 34 meta('apple-mobile-web-app-capable', 'yes'); 35 meta('apple-touch-fullscreen', 'yes'); 36 37 for (i = 0,ln = styleSheets.length; i < ln; i++) { 38 path = styleSheets[i]; 39 40 if (typeof path != 'string') { 41 path = path.path; 42 } 43 44 write('
'); 45 } 46 47 for (i = 0,ln = scripts.length; i < ln; i++) { 48 path = scripts[i]; 49 50 if (typeof path != 'string') { 51 path = path.path; 52 } 53 54 write('

 

转载于:https://www.cnblogs.com/laj12347/archive/2013/03/16/2962608.html

你可能感兴趣的文章
看了这个,你还敢用分身版微信刷步吗?
查看>>
100V/60Hz,三相200V/60Hz 变频电源的标准电压频率是叫什么?
查看>>
CNN初探
查看>>
在线思维导图工具
查看>>
T-MBA·活动报道 | 第三期第四课:卓越演讲影响力-合适的地点说恰当的话
查看>>
Google官方架构MVP解析与实战进阶必学系列
查看>>
吐槽java时间那点事儿 Joda Time
查看>>
体验JBOOT(一)-- Hello, Jboot
查看>>
ubuntu 安装 mongodb
查看>>
JAVA多线程和并发基础面试问答
查看>>
通过Unison实现文件的双向同步
查看>>
nodeJS监控任务完成并通知
查看>>
Hessian学习—Hessian入门
查看>>
QML学习笔记-介绍篇(1)
查看>>
gcc 的原子操作实现自旋锁
查看>>
Socket详解(记录一)
查看>>
Oracle 分析函数
查看>>
SpringBoot基础教程1.1.1 项目搭建
查看>>
Jenkins打包记录导至服务磁盘空间不够
查看>>
设计模式C++实现(2)——策略模式
查看>>