jQuery源碼學習之$()

jQuery之$()

通常咱們使用jQuery的時候,都是使用$()$指向全局的jQuery,因此實際上是調用了jQuery(),結果是返回一個jq對象,但咱們使用時卻不需使用new建立對象,因此能夠推測$()是一個工廠函數。html

$()的定義

jQuery()src/core.js中定義,若在該方法中調用return new jQuery()則陷入循環,因此調用init()協助構造實例。值得一提的是,jQuery.fn/src/core.js指向了jQuery.prototypenode

// Define a local copy of jQuery
    jQuery = function( selector, context ) {

        // The jQuery object is actually just the init constructor 'enhanced'
        // Need init if jQuery is called (just allow error to be thrown if not included)
        return new jQuery.fn.init( selector, context );
    }

init方法的定義

jQuery.fn.init()src/core/init.js中定義。方法接受三個參數selector, context, root,在方法內部,先判斷是否有參數,無參數時返回falsejquery

init = jQuery.fn.init = function( selector, context, root ) {
        var match, elem;

        // HANDLE: $(""), $(null), $(undefined), $(false)
        if ( !selector ) {
            return this;
        }

        // Method init() accepts an alternate rootjQuery
        // so migrate can support jQuery.sub (gh-2101)
        root = root || rootjQuery;

        // Handle HTML strings
        // < xxx > 或 $(#id)
        if ( typeof selector === "string" ) {
            if ( selector[ 0 ] === "<" &&
                selector[ 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[1]是html字符串,match[2]是匹配元素的id
                // selector是id選擇器時match[1]爲undefined,match[2]是匹配元素的id
                // selector是html字符串,match[1]是html字符串,match[2]爲undefined
                match = rquickExpr.exec( selector );
            }

            // Match html or make sure no context is specified for #id
            // 匹配結果非空 且 存在匹配字符串或context空時執行
            // 未爲id選擇器限定查找範圍
            if ( match && ( match[ 1 ] || !context ) ) {

                // HANDLE: $(html) -> $(array)
                if ( match[ 1 ] ) {
                    context = context instanceof jQuery ? context[ 0 ] : context;

                    // Option to run scripts is true for back-compat
                    // Intentionally let the error be thrown if parseHTML is not present
                    // 生成dom節點併合併到this上
                    jQuery.merge( this, jQuery.parseHTML(
                        match[ 1 ],
                        context && context.nodeType ? context.ownerDocument || context : document,
                        true
                    ) );

                    // HANDLE: $(html, props)
                    // 遍歷props,添加屬性或方法
                    if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
                        for ( match in context ) {

                            // Properties of context are called as methods if possible
                            if ( jQuery.isFunction( this[ match ] ) ) {
                                this[ match ]( context[ match ] );

                            // ...and otherwise set as attributes
                            } else {
                                this.attr( match, context[ match ] );
                            }
                        }
                    }

                    return this;

                // HANDLE: $(#id)
                // 處理id選擇器且無context
                } else {
                    elem = document.getElementById( match[ 2 ] );

                    if ( elem ) {

                        // Inject the element directly into the jQuery object
                        this[ 0 ] = elem;
                        this.length = 1;
                    }
                    return this;
                }

            // HANDLE: $(expr, $(...))
            // selector是選擇器 context爲undefined或context.jquery存在時執行。
            // $(#id,context)或$(.class [, context])等狀況
            } else if ( !context || context.jquery ) {
                return ( context || root ).find( selector );

            // HANDLE: $(expr, context)
            // (which is just equivalent to: $(context).find(expr)
            } else {
                return this.constructor( context ).find( selector );
            }

        // HANDLE: $(DOMElement)
        // 傳入DOM元素
        } else if ( selector.nodeType ) {
            this[ 0 ] = selector;
            this.length = 1;
            return this;

        // HANDLE: $(function)
        // Shortcut for document ready
        } else if ( jQuery.isFunction( selector ) ) {
            return root.ready !== undefined ?
                root.ready( selector ) :

                // Execute immediately if ready is not present
                selector( jQuery );
        }

        return jQuery.makeArray( selector, this );
    };

selector是字符串

若是有selector非空,先處理selector是字符串的狀況,分爲html字符串、$(selector)$(expr, $(...))$(expr, context)四種。若是selector是字符串類型,根據傳入的字符串返回生成的dom節點,處理時先用正則匹配,查找html字符串或id。匹配結果非空且存在匹配字符串或context空時說明selctor是html字符串或selector是id選擇器且未限定查找上下文。執行處理html字符串時,先肯定生成後的節點要插入的document是哪一個(即context參數),默認是加載jQuery的document,調用$.parseHTML()生成dom節點並添加到this;若是context是對象,則是$(html, props)的調用,將屬性或者方法掛載到dom上,返回生成的jq對象。若是匹配到$(#id)的調用且context空時,則直接調用document.getElementById查找元素,元素存在時將this[0]指向該元素,返回查找結果。dom

若是selector不是id選擇器或context非空,調用find進行查找,若是context非空,則從context開始查找,不然全局查找,將查找結果做爲返回值。函數

selector是DOM元素

接着處理傳入參數是Dom元素的狀況。將this[0]指向Dom元素,設置jq對象長度爲1,並返回thisui

selector是函數

最後處理$(function(){}),若是存在ready則調用傳入函數調用ready(f()),不然傳入jQuery,直接調用函數,調用makeArray,將其結果做爲返回值。this

修改init的原型

init = jQuery.fn.init = function( selector, context, root ) {
    ...
    }
// Give the init function the jQuery prototype for later instantiation
init.prototype = jQuery.fn;

在原型上定義方法init,而後將init的原型指向jQuery的原型,若是不這麼作,則建立的實例的原型是init.prototype,不是jQuery.fn,實際上是init的實例而不是jQuery的實例,沒法調用在core.js中定義在jQuery.fn上的各類變量和方法。prototype

相關文章
相關標籤/搜索