博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【jQuery】jQuery源码学习笔记(一)选择器的初始
阅读量:5103 次
发布时间:2019-06-13

本文共 3144 字,大约阅读时间需要 10 分钟。

学习、使用这个利器已经半年多了。记得打开过几次,想尝试看看,总是半天摸不着北。

 

今天又打开看了一下,1.7.2 ,终于看到了一点点,做个笔记。

 

// Are we dealing with HTML string or an ID?            if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {                // Assume that strings that start and end with <> are HTML and skip the regex check                match = [ null, selector, null ];            } else {                match = quickExpr.exec( selector );            }

这一段开始的选择器的代码,判断第一个字符是不是'<',最后一个是不是'<',而且长度必须大于3,然后,我想到了appendTo()这个方法,试了一下,果然:

① $('<>1>').appendTo('#msg');  // ok② $('2').appendTo('#msg');  // ok③ $('3').appendTo('#msg');  // 不会成功被append到msg盒子里面去,因为它认为前面的内容不是以'<'开头和'>'结尾的,不是html内容,而会被当作选择器来使用。

当上面的③发生后,将执行  

else {                match = quickExpr.exec( selector ); //quickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/    /*来自源码*/            }

于是,将用这段正则判断选择器,是否以#开头或者不是。接下来的:

// HANDLE: $(html) -> $(array)                if ( match[1] ) {                    context = context instanceof jQuery ? context[0] : context;                    doc = ( context ? context.ownerDocument || context : document );                    // If a single string is passed in and it's a single tag                    // just do a createElement and skip the rest                    ret = rsingleTag.exec( selector );                    if ( ret ) {                        if ( jQuery.isPlainObject( context ) ) {                            selector = [ document.createElement( ret[1] ) ];                            jQuery.fn.attr.call( selector, context, true );                        } else {                            selector = [ doc.createElement( ret[1] ) ];                        }                    } else {                        ret = jQuery.buildFragment( [ match[1] ], [ doc ] );                        selector = ( ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment ).childNodes;                    }                    return jQuery.merge( this, selector );                // HANDLE: $("#id")                } else {                    elem = document.getElementById( match[2] );                    // Check parentNode to catch when Blackberry 4.6 returns                    // nodes that are no longer in the document #6963                    if ( elem && elem.parentNode ) {                        // Handle the case where IE and Opera return items                        // by name instead of ID                        if ( elem.id !== match[2] ) {                            return rootjQuery.find( selector );                        }                        // Otherwise, we inject the element directly into the jQuery object                        this.length = 1;                        this[0] = elem;                    }                    this.context = document;                    this.selector = selector;                    return this;                }

嗯,看经典的了:  

elem = document.getElementById( match[2] );

 

由此可见,用#id选择器,是多么的直接而快速。而否则的话:

呃,不好意思,我看不懂了……只看见有一句:

ret = jQuery.buildFragment( [ match[1] ], [ doc ] );

而这个方法在下面,更看不懂了……

转载于:https://www.cnblogs.com/whatmiss/archive/2012/09/25/2701756.html

你可能感兴趣的文章
Undefined symbols for architecture i386的错误
查看>>
https加密实现
查看>>
设计一个简易的有道词典
查看>>
C++学习008-delete与delete[]的差别
查看>>
OSG-基本几何图形
查看>>
自动称重系统-1
查看>>
js随笔集
查看>>
谷歌浏览器整个网页截图方法
查看>>
小菜面试 String 篇 之 统计一个字符串中数字,字母,的个数
查看>>
PageAdmin网站建设教程:仿58同城站群系统实现不同地区Ip跳转不同分站
查看>>
某绒面试的病毒分析(一)
查看>>
foobar2000转换APE参数设置
查看>>
全面对比T-SQL与PL/SQL
查看>>
利用递归实现简单的树结构菜单
查看>>
GDB调试字符数组时指针和数组区别的体现
查看>>
一个简单的WeakList的实现
查看>>
QComboBox使用方法,QComboBox详解
查看>>
Makefile 的使用
查看>>
计算机组成与功能
查看>>
JavaScript:说看懂了就懂了闭包,看懂了,还是不懂...
查看>>