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 13.58.149.129
2024. 05
1234
567891011
12131415161718
1920
21
22232425
262728293031
Category  Languages, JavaScript
Writer 김태우 Date 2014-04-11 10:12:38 Visit 5002
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