Notice
Recent Posts
Recent Comments
Link
«   2025/06   »
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
Tags
more
Archives
Today
Total
관리 메뉴

18.03.18시작

제이쿼리 시점 궁금한것 본문

공개필기

제이쿼리 시점 궁금한것

블루윤 2018. 3. 23. 15:20


***

시점순서


<head>~~

<script>


alert("111");


window.onload = function() {

alert("222");

};


$(window).on("load", function(){

alert("333");

};


$(document).ready(function(){

alert("444");

};



</script>





***


'공개필기' 카테고리의 다른 글

display:flex 에 대해  (0) 2018.03.23
inline-block 의 수직정렬에 대해 (feat. margin)  (0) 2018.03.23
float 에 대해  (0) 2018.03.23
박스모델에 대해  (0) 2018.03.23
1줄말줄임, 2줄말줄임에 대해(feat. overflow)  (0) 2018.03.23
Comments