学习zepto.js,參考资料:http://www.zeptojs.cn/
跟jQuery一样。其选择符号也是$;
首先接触的是
$.() 选择
$(selector, [context]) ⇒ collection$() ⇒ same collection$( ) ⇒ collection$(htmlString) ⇒ collectionZepto(function($){ ... })
$('div') //=> all DIV elements on the page$('#foo') //=> element with ID "foo"// generate elements from HTML$("Hello
") //=> the orphaned P element// execute function when the page is readyZepto(function($){ alert('Ready to Zepto!')})
$.each 遍历数组和对象
$.each(['a', 'b', 'c'], function(index, item){ console.log('item %d is: %s', index, item)})var hash = { name: 'zepto.js', size: 'micro' }$.each(hash, function(key, value){ console.log('%s: %s', key, value)})
$.extend 扩展对象
var target = { one: 'patridge' }, source = { two: 'turtle doves' }$.extend(target, source)//=> { one: 'patridge',//
$.inArray v1.0+
从某个下标開始 查询元素在数组中的下标,没有符合条件的 则返回-1
$.inArray(element, array, [fromIndex]) ⇒ number
$.isArray
推断一个对象是否是数组