頁面初始化中,用的較多的就是$(document).ready(function(){//代碼}); 或$(window).load(function(){//代碼});
他們的區別就是,ready是在DOM的結構加載完後就觸發,load是在頁面內包括DOM結構,css,js,圖片等都加載完成後再觸發,顯然ready更適合作為頁面初始化使用。但有時候也不盡然。需要進一步查看其內部機制。
那麼ready的內部是如何判斷DOM的結構載入完的呢?而不同的瀏覽器的判斷是如何的?
答案就在jquery程式碼內,假設jquery的版本是jquery-1.11.3.js。
ready的關鍵程式碼(3507~3566行),關鍵程式碼以紅色標示:
jQuery.ready.promise = function( obj ) { if ( !readyList ) { readyList = jQuery.Deferred(); // Catch cases where $(document).ready() is called after the browser event has already occurred. // we once tried to use readyState "interactive" here, but it caused issues like the one // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 if ( document.readyState === "complete" ) { // Handle it asynchronously to allow scripts the opportunity to delay ready setTimeout( jQuery.ready ); // Standards-based browsers support DOMContentLoaded } else if ( document.addEventListener ) { // Use the handy event callback document.addEventListener( "DOMContentLoaded", completed, false ); // A fallback to window.onload, that will always work window.addEventListener( "load", completed, false ); // If IE event model is used } else { // Ensure firing before onload, maybe late but safe also for iframes document.attachEvent( "onreadystatechange", completed ); // A fallback to window.onload, that will always work window.attachEvent( "onload", completed ); // If IE and not a frame // continually check to see if the document is ready var top = false; try { top = window.frameElement == null && document.documentElement; } catch(e) {} if ( top && top.doScroll ) { (function doScrollCheck() { if ( !jQuery.isReady ) { try { // Use the trick by Diego Perini // http://javascript.nwbox.com/IEContentLoaded/ top.doScroll("left"); } catch(e) { return setTimeout( doScrollCheck, 50 ); } // detach all dom ready events detach(); // and execute any waiting functions jQuery.ready(); } })(); } } } return readyList.promise( obj ); };
上面的程式碼在觸發ready時可以分成兩個部分
1.標準瀏覽器下的觸發
當瀏覽器是基於標準瀏覽器時,會在載入完DOM結構後觸發「DOMContentLoaded」事件,jquery內部就用此事件作為ready的觸發來源。
document.addEventListener( "DOMContentLoaded", completed, false );
2.IE瀏覽器下的觸發
當瀏覽器是IE瀏覽器時,因為IE瀏覽器(蛋痛並強大著)不支援「DOMContentLoaded」事件,所以只能另謀它法,
(function doScrollCheck() { if ( !jQuery.isReady ) { try { // Use the trick by Diego Perini // http://javascript.nwbox.com/IEContentLoaded/ top.doScroll("left"); } catch(e) { return setTimeout( doScrollCheck, 50 ); } // detach all dom ready events detach(); // and execute any waiting functions jQuery.ready(); } })();
IE下的做法就是上面程式碼的紅字處,用「document.documentElement.doScroll("left")」的方法去滾動頁面,如果沒加載完就等個50毫秒後繼續滾,直到滾的動後就觸發ready。
但是,如果頁面中有frame的場合,會使用window.onload事件作為ready的觸發來源。
所以在IE下,頁面中有frame時,ready也是等到頁面內的所有內容載入完成後再觸發。
jQuery中ready與load事件的差異
大家在工作中用jQuery的時候一定會在使用之前這樣:
//document ready $(document).ready(function(){ ...code... }) //document ready 简写 $(function(){ ...code... })
有些時候也會這麼寫:
//document load $(document).load(function(){ ...code... })
一個是ready一個是load,這兩個到底有什麼差別呢?今天我們來聊一聊。
ready與load誰先執行:
大家在面試的過程中,常常會被問到一個問題:ready與load那一個先執行,那一個後執行?答案是ready先執行,load後執行。
DOM文檔載入的步驟:
想理解為什麼ready先執行,load後執行就要先聊一下DOM文件載入的步驟:
(1) 解析HTML结构。 (2) 加载外部脚本和样式表文件。 (3) 解析并执行脚本代码。 (4) 构造HTML DOM模型。//ready (5) 加载图片等外部文件。 (6) 页面加载完毕。//load
從上面的描述大家應該已經理解了吧,ready在第(4)步完成之後就執行了。但是load要在步驟(6)完成之後才執行。
ready事件:
ready事件在DOM結構繪製完成之後就繪執行。這樣能確保就算有大量的媒體檔案沒載入出來,JS程式碼一樣可以執行。
load事件:
load事件必須等到網頁中所有內容全部載入完畢之後才執行。如果網頁中有大量的圖片的話,則就會出現這種情況:網頁文件已經呈現出來,但由於網頁資料還沒有完全載入完畢,導致load事件不能夠即時被觸發。
總結:
相信大家已經了解了ready與load的區別,其實如果頁面中要是沒有圖片之類的媒體文件的話ready與load是差不多的,但是頁面中有文件就不一樣了,所以還是推薦大家在工作中用ready。