萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> jquery中ready()函數執行的時機和window的load事件比較

jquery中ready()函數執行的時機和window的load事件比較

   這篇文章主要介紹了jquery中ready()函數執行的時機和window的load事件比較的相關資料,需要的朋友可以參考下

  jquery的ready()實現的是 DOMContentLoaded 事件,DOMContentLoaded與window load事件的區別

  簡單的說ready()是在文檔加載完成就會觸發,此時圖片等資源可能還沒有完全加載, load是在所有資源都加載完成後才會觸發

  看下ready函數的代碼就什麼都清楚了。下面的代碼加上了注釋:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 // Handle when the DOM is ready ready: function() { // Make sure that the DOM is not already loaded if ( !jQuery.isReady ) { // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). if ( !document.body ) { return setTimeout( jQuery.ready, 13 ); }   // Remember that the DOM is ready jQuery.isReady = true;   // If there are functions bound, to execute if ( readyList ) { // Execute all of them var fn, i = 0; while ( (fn = readyList[ i++ ]) ) { fn.call( document, jQuery ); }   // Reset the list of functions readyList = null; }   // Trigger any bound ready events if ( jQuery.fn.triggerHandler ) { jQuery( document ).triggerHandler( "ready" ); } } },

  以上所述就是本文的全部內容了,希望大家能夠喜歡。

copyright © 萬盛學電腦網 all rights reserved