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}