jquery ready 分析


 最近看一些關於jquery ready 有人說他緩慢,有人說他快,說法不一。 於是自己深入研究一下。首先看了一下jquery 文檔 關於ready 的描述

While JavaScript provides the load event for executing code when a page is rendered, this event does not get triggered until all assets such as images have been completely received. In most cases, the script can be run as soon as the DOM hierarchy has been fully constructed. The handler passed to .ready() is guaranteed to be executed after the DOM is ready, so this is usually the best place to attach all other event handlers and run other jQuery code. When using scripts that rely on the value of CSS style properties, it's important to reference external stylesheets or embed style elements before referencing the scripts.

In cases where code relies on loaded assets (for example, if the dimensions of an image are required), the code should be placed in a handler for the load event instead.

 翻譯一下

雖然JavaScript提供了load事件,當頁面渲染完成之后會執行這個函數,在所以元素加載完成之前,這個函數不會被調用,例如圖像。但是在大多數情況下,只要DOM結構加載完,腳本就可以盡快運行。傳遞給.ready()的事件句柄在DOM准備好后立即執行,因此通常情況下,最好把綁定事件句柄和其他jQuery代碼都到這里來。但是當腳本依賴於CSS樣式屬性時,一定要在腳本之前引入外部樣式或內嵌樣式的元素。   
  
如果代碼依賴於需加載完的元素(例如,想獲取一個圖片的尺寸大小),應該用.load()事件代替,並把代碼放到load事件句柄中。   

 依照文檔上面的說明,在頁面內有大量文檔結構,圖片資源時候,ready 是快於 load 的。文檔里面也清晰的分析了什么時候用ready 什么時候用load。

下面分析一下jquery ready 的運行流程

$(handler) or $(document).ready(handler) →  ready() → bindReady() → 執行readyList.add( fn ) fn

 大致看一下源碼

 下面是jquery 的 對象的 ready 源碼

 

 jQuery.fn = jQuery.prototype = {   
            constructor: jQuery,   
            init: function( selector, context, rootjQuery ) {   
                // HANDLE: $(function)   
                // Shortcut for document ready   
                // 如果函數,則認為是DOM ready句柄   
                if ( jQuery.isFunction( selector ) ) {   
                    return rootjQuery.ready( selector );   
                }   
            },   
           
            ready: function( fn ) {   
                // Attach the listeners   
                jQuery.bindReady(); // 綁定DOM ready監聽器,跨瀏覽器,兼容標准瀏覽器和IE瀏覽器   
           
                // Add the callback   
                     readyList.add( fn );// 將ready句柄添加到ready異步句柄隊列   
           
                return this;   
            }   
        };   

 

 調用jquery 的 bindReady ,  增加ready回調!

  下面看一下 bindReady 大致源碼

 

    bindReady: function() { // jQuery.bindReady   
                if ( readyList ) {   
                    return;   
                }   
  
                readyList =jQuery.Callbacks( "once memory" )// 初始化ready異步事件句柄隊列   
  
                // Catch cases where $(document).ready() is called after the   
                // browser event has already occurred.   
                // 如果DOM已經完畢,立即調用jQuery.ready   
                if ( document.readyState === "complete" ) {   
                    // Handle it asynchronously to allow scripts the opportunity to delay ready   
                    // 重要的是異步   
                    return setTimeout( jQuery.ready, 1 );   
                }   
            //下面是一些防御性的編程 故此省略
        ......
}

 這個應該很清楚  document.readyState == 'complete' 就會 執行 jquery 的 ready ,我很困惑的是為什么是 setTiemout(jQuery.ready,1) ,請返回上面看ready 的代碼, readyList.add( fn ), 如果不是異步的,執行回調的就會放到 readyList.add( fn )之前了,因為執行是在jQuery 的ready 里面 readyList.fireWith( document, [ jQuery ] );readylist 是jquery 的callbacks ,就是管理回調函數的!不清楚的可以看看文檔。

注:你會發現有兩個ready,這兩個是不同的,一個放到 jquery.prototype 就是我們$(doucument).ready這個,另一個是jquery的對象方法判斷是否已經ready了的方法

ps : jquery博大精深,文章有錯誤之處,還請各位指正!

 

 

 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM