JackXue程序生涯 2019-06-25
zepto.init = function(selector, context) { var dom // 参数没内容,则返回空集合 if (!selector) return zepto.Z() else if (typeof selector == 'string') { selector = selector.trim() // 如果是 html 标签,则生成 dom 元素 // 先行检查是否为 < 开头,提高正则检测效率 if (selector[0] == '<' && fragmentRE.test(selector)) dom = zepto.fragment(selector, RegExp.$1, context), selector = null // 如果有 context,则生成 context 的对象集合,再检索 else if (context !== undefined) return $(context).find(selector) // 以 css 规则检索元素 else dom = zepto.qsa(document, selector) } // 如果传参是函数,则在页面加载完成时触发执行 else if (isFunction(selector)) return $(document).ready(selector) // 如果给定的是 zepto 集合,直接返回 else if (zepto.isZ(selector)) return selector else { // 是数组,则过滤 null 元素 if (isArray(selector)) dom = compact(selector) // 是对象,则包在数组中 else if (isObject(selector)) dom = [selector], selector = null // If it's a html fragment, create nodes from it // 什么情况下逻辑会走到下面?此时 html fragment 是什么?? else if (fragmentRE.test(selector)) dom = zepto.fragment(selector.trim(), RegExp.$1, context), selector = null // If there's a context, create a collection on that context first, and select // nodes from there else if (context !== undefined) return $(context).find(selector) // And last but no least, if it's a CSS selector, use it to select nodes. else dom = zepto.qsa(document, selector) } // create a new Zepto collection from the nodes found return zepto.Z(dom, selector) }
zepto.fragment = function(html, name, properties) { var dom, nodes, container // 判断是否空标签,如:<a></a> <p /> if (singleTagRE.test(html)) dom = $(document.createElement(RegExp.$1)) if (!dom) { if (html.replace) html = html.replace(tagExpanderRE, "<$1></$2>") // 补全双标签 if (name === undefined) name = fragmentRE.test(html) && RegExp.$1 if (!(name in containers)) name = '*' container = containers[name] container.innerHTML = '' + html // 使 html 字符串转换成 dom 元素 // 将 container 内的元素集合转换成数组,赋值给dom,并清空 container // slice.call 两个好处:1. 转换成数组 2. 数组拷贝 // 这里为什么不直接将 container 置空,而是一个个移除呢?? dom = $.each(slice.call(container.childNodes), function(){ container.removeChild(this) }) } // properties 属性赋值 if (isPlainObject(properties)) { nodes = $(dom) $.each(properties, function(key, value) { if (methodAttributes.indexOf(key) > -1) nodes[key](value) else nodes.attr(key, value) }) } return dom }
规则
/^[/w-]*$/
zepto.Z = function(dom, selector) { return new Z(dom, selector) } function Z(dom, selector) { var i, len = dom ? dom.length : 0 for (i = 0; i < len; i++) this[i] = dom[i] this.length = len this.selector = selector || '' }