jquery和zepto的擴展方法extend

總結(jié)下jQuery(3.1.1)和zepto(1.1.6)到底是如何來開放接口,使之可以進行擴展,兩者都會有類型判斷,本文使用簡單的類型判斷,暫不考慮兼容。

類型判斷

var class2type = {},toString = class2type.toString,$={};//判斷類型function type(obj) {  return obj == null ? String(obj) : class2type[toString.call(obj)] || "object"}//對象function isObject(obj) {  return type(obj) == "object"}//字面量對象function isPlainObject(obj) {  return isObject(obj) && !isWindow(obj) && Object.getPrototypeOf(obj) == Object.prototype
}function isArray(arr){  return Array.isArray(arr) || arr instanceof Array}

延伸閱讀

學(xué)習(xí)是年輕人改變自己的最好方式-Java培訓(xùn),做最負責(zé)任的教育,學(xué)習(xí)改變命運,軟件學(xué)習(xí),再就業(yè),大學(xué)生如何就業(yè),幫大學(xué)生找到好工作,lphotoshop培訓(xùn),電腦培訓(xùn),電腦維修培訓(xùn),移動軟件開發(fā)培訓(xùn),網(wǎng)站設(shè)計培訓(xùn),網(wǎng)站建設(shè)培訓(xùn)學(xué)習(xí)是年輕人改變自己的最好方式