更新時(shí)間:2016年10月13日10時(shí)39分 來源:傳智播客前端與移動開發(fā)學(xué)院 瀏覽次數(shù):
1. Zepto 對象 不能自定義事件
例如執(zhí)行: $({}).bind('cust', function(){});
結(jié)果: TypeError: Object has no method 'addEventListener'
解決辦法是創(chuàng)建一個(gè)脫離文檔流的節(jié)點(diǎn)作為事件對象:
例如: $('').bind('cust', function(){});
2. Zepto 的選擇器表達(dá)式: [name=value] 中value 必須用 雙引號 " or 單引號 ' 括起來
例如執(zhí)行:$('[data-userid=123123123]')
結(jié)果:Error: SyntaxError: DOM Exception 12
解決辦法: $('[data-userid="123123123]"') or $("[data-userid='123123123']")
2-1.zepto的選擇器沒有辦法選出 $("div[name!='abc']") 的元素
2-2.zepto獲取select元素的選中option不能用類似jq的方法$('option[selected]'),因?yàn)閟elected屬性不是css的標(biāo)準(zhǔn)屬性
應(yīng)該使用$('option').not(function(){ return !this.selected })
比如:jq:this.find('option[selected]').attr('data-v') * 1
zepto:this.find('option').not(function() {return !this.selected}).attr('data-v') * 1
但是獲取有select中含有disabled屬性的元素可以用 $this.find("option:not(:disabled)") 因?yàn)閐isabled是標(biāo)準(zhǔn)屬性
2-3、zepto在操作dom的selected和checked屬性時(shí)盡量使用prop方法,以下是官方說明:
3.Zepto 是根據(jù)標(biāo)準(zhǔn)瀏覽器寫的,所以對于節(jié)點(diǎn)尺寸的方法只提供 width() 和 height(),省去了 innerWidth(), innerHeight(),outerWidth(),outerHeight()
Zepto.js: 由盒模型( box-sizing )決定
jQery: 忽略盒模型,始終返回內(nèi)容區(qū)域的寬/高(不包含 padding 、 border )解決方式就是使用 .css('width') 而不是 .width() 。
3-1.邊框三角形寬高的獲取
假設(shè)用下面的 HTML 和 CSS 畫了一個(gè)小三角形:
jQuery 使用 .width() 和 .css('width') 都返回 ,高度也一樣;
Zepto 使用 .width() 返回 ,使用 .css('width') 返回 0px 。
所以,這種場景,jQuery 使用 .outerWidth() / .outerHeight() ;Zepto 使用 .width() / .height() 。
3-2.offset()
Zepto.js: 返回 top 、 left 、 width 、 height
jQuery: 返回 width 、 height
3-3.隱藏元素
Zepto.js: 無法獲取寬高;
jQuery: 可以獲取。
4.Zepto 的each 方法只能遍歷 數(shù)組,不能遍歷JSON對象
現(xiàn)官網(wǎng)上each的定義
$.each(collection, function(index, item){ ... }) ⇒ collection
Iterate over array elements or object key-value pairs. Returning false from the iterator function stops the iteration.
可以便利數(shù)組和鍵值對了
5.Zepto 的animate 方法參數(shù)說明 :詳情點(diǎn)擊->
zepto中animate的用法
6.zepto的jsonp callback函數(shù)名無法自定義
7.DOM 操作區(qū)別
jq代碼:
jQuery 操作 ul 上的 id 不會被添加。
zepto代碼:
Zepto 可以在 ul 上添加 id 。
8.事件觸發(fā)區(qū)別
jq代碼:
使用 jQuery 時(shí) load 事件的處理函數(shù) 不會 執(zhí)行
zepto代碼:
北京校區(qū)