這篇依然是跟 dom 相關(guān)的方法,側(cè)重點(diǎn)是操作屬性的方法。

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

源碼版本

本文閱讀的源碼為 zepto1.2.0

內(nèi)部方法

setAttribute

function setAttribute(node, name, value) {
  value == null ? node.removeAttribute(name) : node.setAttribute(name, value)}

如果屬性值 value 存在,則調(diào)用元素的原生方法 setAttribute 設(shè)置對(duì)應(yīng)元素的指定屬性值,否則調(diào)用 removeAttribute 刪除指定的屬性。

網(wǎng)友評(píng)論