IT_Programming/JavaScript

[Tip] 자바스크립트 onload 시점

JJun ™ 2013. 2. 6. 18:41



 출처: http://pskppoppo.egloos.com/3146846




(function() {

    alert(1);

})();

: Document 이미지가 로드되기 전에실행.




$(document).ready(

    function(){

        alert(2);

    }

);

: JQuery ready 함수. Document 로드되고 이미지가 로드되기 전에 실행.




onload = function(){

    alert(3);

}

: Document 이미지 모두 로드된 실행.