国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

讀 Zepto 源碼之集合元素查找

DC_er / 1002人閱讀

摘要:方法是將集合中不符合條件的元素查找出來。判斷集合中的第一個元素是否匹配指定的選擇器。這個在讀源碼之集合操作有講過,如果集合個數大于零,則表示滿足條件。返回集合中所有元素指定的屬性值。獲取集合中每個元素的前一個兄弟節點。

這篇依然是跟 dom 相關的方法,側重點是跟集合元素查找相關的方法。

讀Zepto源碼系列文章已經放到了github上,歡迎star: reading-zepto

源碼版本

本文閱讀的源碼為 zepto1.2.0

內部方法

之前有一章《讀Zepto源碼之內部方法》是專門解讀 zepto 中沒有提供給外部使用的內部方法的,但是有幾個涉及到 dom 的方法沒有解讀,這里先將本章用到的方法解讀一下。

matches
zepto.matches = function(element, selector) {
  if (!selector || !element || element.nodeType !== 1) return false
  var matchesSelector = element.matches || element.webkitMatchesSelector ||
      element.mozMatchesSelector || element.oMatchesSelector ||
      element.matchesSelector
  if (matchesSelector) return matchesSelector.call(element, selector)
  // fall back to performing a selector:
  var match, parent = element.parentNode,
      temp = !parent
  if (temp)(parent = tempParent).appendChild(element)
    match = ~zepto.qsa(parent, selector).indexOf(element)
    temp && tempParent.removeChild(element)
    return match
}

matches 方法用于檢測元素( element )是否匹配特定的選擇器( selector )。

瀏覽器也有原生的 matches 方法,但是要到IE9之后才支持。具體見文檔:Element.matches()

if (!selector || !element || element.nodeType !== 1) return false

這段是確保 selectorelement 兩個參數都有傳遞,并且 element 參數的 nodeTypeELEMENT_NODE ,如何條件不符合,返回 false

 var matchesSelector = element.matches || element.webkitMatchesSelector ||
     element.mozMatchesSelector || element.oMatchesSelector ||
     element.matchesSelector
 if (matchesSelector) return matchesSelector.call(element, selector)

這段是檢測瀏覽器是否原生支持 matches 方法,或者支持帶私有前綴的 matches 方法,如果支持,調用原生的 matches ,并將結果返回。

var match, parent = element.parentNode,
    temp = !parent
if (temp)(parent = tempParent).appendChild(element)
  match = ~zepto.qsa(parent, selector).indexOf(element)
  temp && tempParent.removeChild(element)
  return match

如果原生的方法不支持,則回退到用選擇器的方法來檢測。

這里定義了三個變量,其中 parent 用來存放 element 的父節點, temp 用來判斷 element 是否有父元素。值為 temp = !parent ,如果 element 存在父元素,則 temp 的值為 false

首先判斷是否存在父元素,如果父元素不存在,則 parent = tempParenttempParent 已經由一個全局變量來定義,為 tempParent = document.createElement("div") ,其實就是一個 div 空節點。然后將 element 插入到空節點中。

然后,查找 parent 中所有符合選擇器 selector 的元素集合,再找出當前元素 element 在集合中的索引。

zepto.qsa(parent, selector).indexOf(element)

再對索引進行取反操作,這樣索引值為 0 的值就變成了 -1,是 -1 的返回的是 0,這樣就確保了跟 matches 的表現一致。

其實我有點不太懂的是,為什么不跟原生一樣,返回 boolean 類型的值呢?明明通過 zepto.qsa(parent, selector).indexOf(element) > -1 就可以做到了,接口表現一致不是更好嗎?

最后還有一步清理操作:

temp && tempParent.removeChild(element)

將空接點的子元素清理點,避免污染。

children
function children(element) {
  return "children" in element ?
    slice.call(element.children) :
  $.map(element.childNodes, function(node) { if (node.nodeType == 1) return node })
}

children 方法返回的是 element 的子元素集合。

瀏覽器也有原生支持元素 children 屬性,也要到IE9以上才支持,見文檔ParentNode.children

如果檢測到瀏覽器不支持,則降級用 $.map 方法,獲取 elementchildNodesnodeTypeELEMENT_NODE 的節點。因為 children 返回的只是元素節點,但是 childNodes 返回的除元素節點外,還包含文本節點、屬性等。

這里用到的 $.map 跟數組的原生方法 map 表現有區別,關于 $.map 的具體實現,已經在《讀zepto源碼之工具函數》解讀過了。

filtered
function filtered(nodes, selector) {
  return selector == null ? $(nodes) : $(nodes).filter(selector)
}

將匹配指定選擇器的元素從集合中過濾出來。

如果沒有指定 selector ,則將集合包裹成 zepto 對象全部返回,否則調用 filter 方法,過濾出符合條件的元素返回。filter 方法下面馬上講到。

元素方法

這里的方法都是 $.fn 中提供的方法。

.filter()
filter: function(selector) {
  if (isFunction(selector)) return this.not(this.not(selector))
  return $(filter.call(this, function(element) {
    return zepto.matches(element, selector)
  }))
}

filter 是查找符合條件的元素集合。

參數 selector 可以為 Function 或者選擇器,當為 Function 時,調用的其實調用了兩次 not 方法,負負得正。關于 not 方法,下面馬上會看到。

當為一般的選擇器時,調用的是filter 方法,filter 的回調函數調用了 matches ,將符合 selector 的元素返回,并包裝成 zepto 對象返回。

.not()
not: function(selector) {
  var nodes = []
  if (isFunction(selector) && selector.call !== undefined)
    this.each(function(idx) {
      if (!selector.call(this, idx)) nodes.push(this)
        })
    else {
      var excludes = typeof selector == "string" ? this.filter(selector) :
      (likeArray(selector) && isFunction(selector.item)) ? slice.call(selector) : $(selector)
      this.forEach(function(el) {
        if (excludes.indexOf(el) < 0) nodes.push(el)
          })
    }
  return $(nodes)
}

not 方法是將集合中不符合條件的元素查找出來。

not 方法的方法有三種調用方式:

not(selector)  ? collection
not(collection)  ? collection
not(function(index){ ... })  ? collection

selectorFunction ,并且有 call 方法時(isFunction(selector) && selector.call !== undefined),相關的代碼如下:

this.each(function(idx) {
  if (!selector.call(this, idx)) nodes.push(this)
    })

調用 each 方法,并且在 selector 函數中,可以訪問到當前的元素和元素的索引。如果 selector 函數的值取反后為 true,則將相應的元素放入 nodes 數組中。

selector 不為 Function 時, 定義了一個變量 excludes ,這個變量來用接收需要排除的元素集合。接下來又是一串三元表達式(zepto的特色啊)

typeof selector == "string" ? this.filter(selector)

selectorstring 時,調用 filter ,找出所有需要排除的元素

(likeArray(selector) && isFunction(selector.item)) ? slice.call(selector) : $(selector)

這段我剛開始看時,有點困惑,主要是不明白 isFunction(selector.item) 這個判斷條件,后來查了MDN文檔HTMLCollection.item,才明白 itemHTMLCollection 的一個方法,這個三元表達式的意思是,如果是 HTMLCollection ,則調用 slice.call 得到一個純數組,否則返回 zepto 對象。

this.forEach(function(el) {
    if (excludes.indexOf(el) < 0) nodes.push(el)
})

遍歷集合,如果元素不在需要排除的元素集合中,將該元素 pushnodes 中。

not 方法最終返回的也是 zepto 對象。

.is()
is: function(selector) {
  return this.length > 0 && zepto.matches(this[0], selector)
}

判斷集合中的第一個元素是否匹配指定的選擇器。

代碼也比較簡單了,選判斷集合不為空,再調用 matches 看第一個元素是否匹配。

.find()
find: function(selector) {
  var result, $this = this
  if (!selector) result = $()
  else if (typeof selector == "object")
    result = $(selector).filter(function() {
      var node = this
      return emptyArray.some.call($this, function(parent) {
        return $.contains(parent, node)
      })
    })
    else if (this.length == 1) result = $(zepto.qsa(this[0], selector))
    else result = this.map(function() { return zepto.qsa(this, selector) })
    return result
}

find 是查找集合中符合選擇器的所有后代元素,如果給定的是 zepto 對象或者 dom 元素,則只有他們在當前的集合中時,才返回。

fid 有三種調用方式,如下:

find(selector)   ? collection
find(collection)   ? collection
find(element)   ? collection
if (!selector) result = $()

如果不傳參時,返回的是空的 zepto 對象。

else if (typeof selector == "object")
  result = $(selector).filter(function() {
    var node = this
    return emptyArray.some.call($this, function(parent) {
      return $.contains(parent, node)
    })
  })

如果傳參為 object 時,也就是 zepto 對象collectiondom 節點 element 時,先將 selector 包裹成 zepto 對象,然后對這個對象過濾,返回當前集合子節點中所包含的元素($.contains(parent, node))。

else if (this.length == 1) result = $(zepto.qsa(this[0], selector))

如果當前的集合只有一個元素時,直接調用 zepto.qsa 方法,取出集合的第一個元素 this[0] 作為 qsa 的第一個參數。關于 qsa 方法,已經在《讀Zepto源碼之神奇的$》分析過了。其實就是獲取第一個元素的所有后代元素。

else result = this.map(function() { return zepto.qsa(this, selector) })

否則,調用 map 方法,對集合中每個元素都調用 qsa 方法,獲取所有元素的后代元素。這個條件其實可以與上一個條件合并的,分開應該是為了性能的考量。

.has()
has: function(selector) {
  return this.filter(function() {
    return isObject(selector) ?
      $.contains(this, selector) :
    $(this).find(selector).size()
  })
},

判斷集合中是否有包含指定條件的子元素,將符合條件的元素返回。

有兩種調用方式

has(selector)   ? collection
has(node)   ? collection

參數可以為選擇器或者節點。

has 其實調用的是 filter 方法,這個方法上面已經解讀過了。filter 的回調函數中根據參數的不同情況,調用了不同的方法。

isObject(selector) 用來判斷 selector 是否為 node 節點,如果為 node 節點,則調用 $.contains 方法,該方法已經在《讀Zepto源碼之工具函數》說過了。

如果為選擇器,則調用 find 方法,然后再調用 size 方法,size 方法返回的是集合中元素的個數。這個在《讀Zepto源碼之集合操作》有講過,如果集合個數大于零,則表示滿足條件。

.eq()
eq: function(idx) {
  return idx === -1 ? this.slice(idx) : this.slice(idx, +idx + 1)
},

獲取集合中指定的元素。

這里調用了 slice 方法,這個方法在上一篇《讀Zepto源碼之集合操作》已經說過了。如果 idx-1 時,直接調用 this.slice(idx) ,即取出最后一個元素,否則取 idxidx + 1 之間的元素,也就是每次只取一個元素。+idx+1 前面的 + 號其實是類型轉換,確保 idx 在做加法的時候為 Number 類型。

.first()
first: function() {
  var el = this[0]
  return el && !isObject(el) ? el : $(el)
},

first 是取集合中第一個元素,這個方法很簡單,用索引 0 就可以取出來了,也就是 this[0]

el && !isObject(el) 用來判斷是否為 zepto 對象,如果不是,用 $(el) 包裹,確保返回的是 zepto 對象。

.last()
last: function() {
  var el = this[this.length - 1]
  return el && !isObject(el) ? el : $(el)
},

last 是取集合中最后一個元素,這個的原理跟 first 一樣,只不過變成了取索引值為 this.length - 1 ,也就是最后的元素。

.closest()
closest: function(selector, context) {
  var nodes = [],
      collection = typeof selector == "object" && $(selector)
  this.each(function(_, node) {
    while (node && !(collection ? collection.indexOf(node) >= 0 : zepto.matches(node, selector)))
      node = node !== context && !isDocument(node) && node.parentNode
      if (node && nodes.indexOf(node) < 0) nodes.push(node)
        })
  return $(nodes)
},

從元素本身向上查找,返回最先符合條件的元素。

這個方法也有三種調用方式

closest(selector, [context])   ? collection
closest(collection)   ? collection 
closest(element)   ? collection 

如果指定了 zepto 集合或者 element ,則只返回匹配給定集合或 element 的元素。

collection = typeof selector == "object" && $(selector)

這段是判斷 selector 是否為 collectionelement ,如果是,則統一轉化為 zepto 集合。

然后對集合遍歷,在 each 遍歷里針對集合中每個 node 節點,都用 while 語句,向上查找符合條件的元素。

node && !(collection ? collection.indexOf(node) >= 0 : zepto.matches(node, selector))

這段是 while 語句的終止條件。 node 節點必須存在,如果 selectorzepto 集合或者 element ,也即 collection 存在, 則要找到存在于 collection 中的節點(collection.indexOf(node) >= 0), 否則,節點要匹配指定的選擇器(zepto.matches(node, selector)

while 循環中,是向上逐級查找節點的過程:

node = node !== context && !isDocument(node) && node.parentNode

當前 node 不為指定的上下文 context 并且不為 document 節點時,向上查找(node.parentNode

if (node && nodes.indexOf(node) < 0) nodes.push(node)

while 循環完畢后,如果 node 節點存在,并且 nodes 中還不存在 node ,則將 node push 進 nodes 中。

最后返回 zepto 集合。

.pluck()
pluck: function(property) {
  return $.map(this, function(el) { return el[property] })
},

返回集合中所有元素指定的屬性值。

這個方法很簡單,就是對當前集合遍歷,然后取元素指定的 property 值。

.parents()
parents: function(selector) {
  var ancestors = [],
      nodes = this
  while (nodes.length > 0)
    nodes = $.map(nodes, function(node) {
      if ((node = node.parentNode) && !isDocument(node) && ancestors.indexOf(node) < 0) {
        ancestors.push(node)
        return node
      }
    })
    return filtered(ancestors, selector)
},

返回集合中所有元素的所有祖先元素。

nodes 的初始值為當前集合,while 循環的條件為集合不為空。

使用 map 遍歷 nodes ,將 node 重新賦值為自身的父級元素,如果父級元素存在,并且不是 document 元素,而且還不存在于 ancestors 中時,將 node 存入保存祖先元素的 ancestors 中,并且 map 回調的返回值是 node ,組成新的集合賦值給 nodes ,直到所有的祖先元素遍歷完畢,就可以退出 while 循環。

最后,調用上面說到的 filtered 方法,找到符合 selector 的祖先元素。

.parent()
parent: function(selector) {
  return filtered(uniq(this.pluck("parentNode")), selector)
},

返回集合中所有元素的父級元素。

parents 返回的是所有祖先元素,而 parent 返回只是父級元素。

首先調用的是 this.pluck("parentNode") ,獲取所有元素的祖先元素,然后調用 uniq 對集合去重,最后調用 filtered ,返回匹配 selector 的元素集合。

.children()
children: function(selector) {
  return filtered(this.map(function() { return children(this) }), selector)
},

返回集合中所有元素的子元素。

首先對當前集合遍歷,調用內部方法 children 獲取當前元素的子元素組成新的數組,再調用 filtered 方法返回匹配 selector 的元素集合。

.contents()
contents: function() {
  return this.map(function() { return this.contentDocument || slice.call(this.childNodes) })
},

這個方法類似于 children ,不過 childrenchildNodes 進行了過濾,只返回元素節點。contents 還返回文本節點和注釋節點。也返回 iframecontentDocument

.siblings()
siblings: function(selector) {
  return filtered(this.map(function(i, el) {
    return filter.call(children(el.parentNode), function(child) { return child !== el })
  }), selector)
},

獲取所有集合中所有元素的兄弟節點。

獲取兄弟節點的思路也很簡單,對當前集合遍歷,找到當前元素的父元素el.parentNode,調用 children 方法,找出父元素的子元素,將子元素中與當前元素不相等的元素過濾出來即是其兄弟元素了。

最后調用 filtered 來過濾出匹配 selector 的兄弟元素。

.prev()
prev: function(selector) { return $(this.pluck("previousElementSibling")).filter(selector || "*") },

獲取集合中每個元素的前一個兄弟節點。

這個方法也很簡單,調用 pluck 方法,獲取元素的 previousElementSibling 屬性,即為元素的前一個兄弟節點。再調用 filter 返回匹配 selector 的元素,最后包裹成 zepto 對象返回

.next()
next: function(selector) { return $(this.pluck("nextElementSibling")).filter(selector || "*") },

next 方法跟 prev 方法類似,只不過取的是 nextElementSibling 屬性,獲取的是每個元素的下一個兄弟節點。

.index()
index: function(element) {
  return element ? this.indexOf($(element)[0]) : this.parent().children().indexOf(this[0])
},

返回指定元素在當前集合中的位置(this.indexOf($(element)[0])),如果沒有給出 element ,則返回當前鮮紅在兄弟元素中的位置。this.parent().children() 查找的是兄弟元素。

系列文章

讀Zepto源碼之代碼結構

讀 Zepto 源碼之內部方法

讀Zepto源碼之工具函數

讀Zepto源碼之神奇的$

讀Zepto源碼之集合操作

參考

Element.matches()

ParentNode.children

Node.childNodes

HTMLCollection.item

License

最后,所有文章都會同步發送到微信公眾號上,歡迎關注,歡迎提意見:

作者:對角另一面

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/83237.html

相關文章

  • Zepto源碼Data模塊

    摘要:的模塊用來獲取節點中的屬性的數據,和儲存跟相關的數據。獲取節點指定的緩存值。如果存在,則刪除指定的數據,否則將緩存的數據全部刪除。為所有下級節點,如果為方法,則節點自身也是要被移除的,所以需要將自身也加入到節點中。 Zepto 的 Data 模塊用來獲取 DOM 節點中的 data-* 屬性的數據,和儲存跟 DOM 相關的數據。 讀 Zepto 源碼系列文章已經放到了github上,歡...

    wua_wua2012 評論0 收藏0
  • Zepto源碼Selector模塊

    摘要:如果偽類的參數不可以用轉換,則參數為字符串,用正則將字符串前后的或去掉,再賦值給最后執行回調,將解釋出來的參數傳入回調函數中,將執行結果返回。重寫的方法,改過的調用的是方法,在回調函數中處理大部分邏輯。 Selector 模塊是對 Zepto 選擇器的擴展,使得 Zepto 選擇器也可以支持部分 CSS3 選擇器和 eq 等 Zepto 定義的選擇器。 在閱讀本篇文章之前,最好先閱讀《...

    Jioby 評論0 收藏0
  • Zepto源碼Stack模塊

    摘要:讀源碼系列文章已經放到了上,歡迎源碼版本本文閱讀的源碼為改寫原有的方法模塊改寫了以上這些方法,這些方法在調用的時候,會為返回的結果添加的屬性,用來保存原來的集合。方法的分析可以看讀源碼之模塊。 Stack 模塊為 Zepto 添加了 addSelf 和 end 方法。 讀 Zepto 源碼系列文章已經放到了github上,歡迎star: reading-zepto 源碼版本 本文閱讀的...

    crossea 評論0 收藏0
  • Zepto源碼Form模塊

    摘要:模塊處理的是表單提交。表單提交包含兩部分,一部分是格式化表單數據,另一部分是觸發事件,提交表單。最終返回的結果是一個數組,每個數組項為包含和屬性的對象。否則手動綁定事件,如果沒有阻止瀏覽器的默認事件,則在第一個表單上觸發,提交表單。 Form 模塊處理的是表單提交。表單提交包含兩部分,一部分是格式化表單數據,另一部分是觸發 submit 事件,提交表單。 讀 Zepto 源碼系列文章已...

    陳江龍 評論0 收藏0
  • Zepto源碼assets模塊

    摘要:模塊是為解決移動版加載圖片過大過多時崩潰的問題。因為沒有處理過這樣的場景,所以這部分的代碼解釋不會太多,為了說明這個問題,我翻譯了這篇文章作為附文怎樣處理移動端對圖片資源的限制,更詳細地解釋了這個模塊的應用場景。 assets 模塊是為解決 Safari 移動版加載圖片過大過多時崩潰的問題。因為沒有處理過這樣的場景,所以這部分的代碼解釋不會太多,為了說明這個問題,我翻譯了《How to...

    thursday 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<