SPATIUM Mobile
주소복사
About Operating System Languages Tools Favorites Notice Visit TEST  
     Android (3)
     Linux (1)
     MacOS (1)
     OS (1)
     Solaris10 (15)
     Windows (1)
     Windows Server (2)
     Windows XP (3)
   ID  
   Password  
  |  
  Location United States
  IP Address 3.144.243.184
2024. 04
123456
78910111213
14151617181920
21222324252627
28
29
30
Category  Languages, JavaScript
Writer 김태우 Date 2014-04-11 10:12:38 Visit 4986
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