jquery의 Ready()는 DOMContentLoaded 이벤트를 구현합니다. DOMContentLoaded와 창 로드 이벤트의 차이점
간단히 말하면 문서가 로드될 때 Ready()가 트리거됩니다. 이때 이미지 및 기타 리소스가 완전히 로드되지 않을 수 있습니다. 로드는 모든 리소스가 로드된 후에 트리거됩니다.
ready 함수의 코드를 보면 모든 것이 명확해집니다. 아래 코드는 주석 처리되어 있습니다:
// 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" ); } } },
위 내용은 이 글의 전체 내용입니다. 모두 마음에 드셨으면 좋겠습니다.