随笔分类 -  Zepto

Zepto源码 相关用法
摘要:如果你也开发移动端web,如果你也用zepto,应该值得你看看。有问题请留言。Zepto源码分析-架构Zepto源码分析-zepto(DOM)模块Zepto源码分析-callbacks模块Zepto源码分析-event模块Zepto源码分析-ajax模块Zepto源码分析-form模块Zepto源码... 阅读全文
posted @ 2015-07-06 19:55 莫名  阅读(286) 评论(0) 推荐(0)
摘要:源码注释// Zepto.js// (c) 2010-2015 Thomas Fuchs// Zepto.js may be freely distributed under the MIT license.;(function($, undefined){ var pre... 阅读全文
posted @ 2015-05-29 15:49 莫名  阅读(2270) 评论(0) 推荐(0)
摘要:问题描述 在jquery或zepto下,循环调用同一个jsonp for(var i = 0;i 0) abortTimeout = setTimeout(function(){ abort('timeout') }, options.timeout) ... 阅读全文
posted @ 2015-04-27 11:39 莫名  阅读(2224) 评论(2) 推荐(2)
摘要:源码注释 // Zepto.js// (c) 2010-2015 Thomas Fuchs// Zepto.js may be freely distributed under the MIT license.//// Some code (c) 2005, 201... 阅读全文
posted @ 2015-04-13 22:08 莫名  阅读(3870) 评论(2) 推荐(1)
摘要:源码注释// Zepto.js// (c) 2010-2015 Thomas Fuchs// Zepto.js may be freely distributed under the MIT license.;(function($){ var jsonpID = 0, ... 阅读全文
posted @ 2015-04-09 17:37 莫名  阅读(2362) 评论(0) 推荐(0)
摘要:源码注释// Zepto.js// (c) 2010-2015 Thomas Fuchs// Zepto.js may be freely distributed under the MIT license.;(function($){ var _zid = 1, unde... 阅读全文
posted @ 2015-04-03 10:21 莫名  阅读(2151) 评论(2) 推荐(3)
摘要:// Zepto.js// (c) 2010-2015 Thomas Fuchs// Zepto.js may be freely distributed under the MIT license./** * 回调函数管理:添加add() 移除remove()、触发fire... 阅读全文
posted @ 2015-03-26 17:27 莫名  阅读(1381) 评论(1) 推荐(0)
摘要:源码// Zepto.js// (c) 2010-2015 Thomas Fuchs// Zepto.js may be freely distributed under the MIT license.var Zepto = (function() { //定义局部变... 阅读全文
posted @ 2015-03-26 16:34 莫名  阅读(2152) 评论(0) 推荐(0)
摘要:构造函数 Zepto.js 是专门为智能手机浏览器推出的javascript库, 拥有与和jQuery相似的语法。 它的优点是精简,压缩后5-10K。 不支持IE MIT开源协议结构 http://zeptojs.com/(1.6.1版本)架构 自调用匿名函数/** * 整体上的自调... 阅读全文
posted @ 2015-03-26 15:16 莫名  阅读(809) 评论(1) 推荐(0)