-
JQuery中定义: return new jQuery.fn.init( selector, context ); zepto: return zepto.init(selector,context);查看全部
-
使用zepto而不使用JQuery Mobile的原因查看全部
-
性能 兼容查看全部
-
dom 操作查看全部
-
开发工具查看全部
-
两者区别查看全部
-
移动开发框架: 1、jquery mobile 高度组件化(包含UI,可快速开发) 2、zepto 轻量(侧重性能,轻量,节省带宽)查看全部
-
创建zepto插件: ;(function($){ $.extend($.fn,{ foo:function(){ return this.html("foo"); } }); })(Zepto);查看全部
-
需要重点掌握 这是好东西查看全部
-
fx.js 是zeptojs中动画效果插件 touchjs就是zeptojs中的触摸效果插件查看全部
-
live2跨域怎么做查看全部
-
小提示查看全部
-
zepto自带的四个模块查看全部
-
Zepto API: Core $构造器 $.camaelCase 驼峰显示 $.camelCase(string) 例:$.camelCase("hello-there")//==>"helloThree" $.camelCase("helloThere")//==>"helloThere" $.contains 判断父节点中是否包含某些子节点 例:$.contains(parent,node)==> boolean $each 遍历集合 $.each(collection,function(index,item){...}) ==>collection 例:$.each(['a','b','c'], function(index,item){ console.log('item %d is:%s',index,item) }) var hash ={ name:'zepto.js',size:'micro'} $.each(hash,fuction(key,value){ console.log('%s:%s',key,value) })查看全部
-
zepto中的$ 核心 --函数构造器 与jqery的$是有区别的 zepto中的$有针对移动端进行了大量的优化查看全部
举报
0/150
提交
取消