SPATIUM Mobile
주소복사
About Operating System Languages Tools Favorites Notice Visit TEST  
     DB (1)
     PDF (1)
     Recording (1)
     Util (2)
     Web (2)
   ID  
   Password  
  |  
  Location United States
  IP Address 18.221.154.151
2024. 04
123456
78910111213
14151617181920
2122232425
26
27
282930
Category  Languages, JavaScript
Writer 김태우 Date 2014-04-11 10:12:38 Visit 4979
jQuery(ready, load) VS Javascript(onload)

 

jQuery(ready, load) VS Javascript(onload)

 

The order of execution

 

1. DOM element Loading

2. DOM element Load end, jQuery ready ( 이미지가 로딩되지 않아도 됨)

    2-1. Body onload

3. Document Load end, jQuery load ( 이미지등 모든 내용이 완료된 시점 )

 

sample code


<!doctype html>
<html lang="ko">
	<head>
		<meta charset="utf-8">
		<script src="./Scripts/jquery-1.9.1.js"></script>
	</head>
	<body onload="javascipt:alert('body tag onload(2-1)')">
		jQuery(ready, load) VS Javascript(onload) 
		<script>
		$(window).load(function(){
			alert('jquery load event(3)');
		});
		$(window).ready(function(){
			alert('jquery ready event(2)');
		});
		alert('script alert event(1)');
		</script>
	</body>
</html>
Tags  jQuery(ready, load) VS Javascript(onload)
  Relation Articles
[Languages-JavaScript] jQuery(ready, load) VS Javascript(onload) (2014-04-11 10:12:38)
  Your Opinion
Member ID
150 letters
Copyright (C) SPATIUM. All rights reserved.
[SPATIUM]WebMaster Mail