Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- jquery
- jqeury
- oracle not in
- 한글
- Download
- 설치
- 개발자
- input box
- oracle not exists
- 2NE1
- iTunes
- update
- 이클립스
- 검색
- error
- 링크
- 태그를 입력해 주세요.
- html
- M480
- Modeling
- 미라지
- 10g
- Oracle
- 다운로드
- javascript
- SELECT UPDATE
- DATABASE
- eclipse
- 오라클
- java
Archives
- Today
- Total
not set
jQuery 의 ready() 본문
<script>
$(function () {
alert('간단한 형식');
});
$(document).ready(function () {
alert('First READY');
});
$(document).ready(function () {
alert('Second READY');
});
$(document).ready(function () {
alert('Third READY');
});
</script>
jQuery 에서 위와 같은 코드는
<script>
window.onload = function () {
};
};
</script>
window.onload 와 같은 이벤트를 수행한다.
차이점은 window.onload 는 페이지가 로딩 될때 딱 한번 수행되는 반면에
jquery에서 ready 메서드는 여러번 수행 될 수 있으며 여러개의 함수를 연결 할 수 있다.
본문 출처 : 모던 웹을 위한 Javascript 입문 및 jQuery입문
'javascript > jQuery' 카테고리의 다른 글
jQuery 클래스 선택자 (0) | 2012.01.17 |
---|---|
jQuery 메서드의 기본 형태 (0) | 2012.01.17 |
jQuery 다운로드, CDN 방식 (0) | 2012.01.17 |
jQuery 란? (0) | 2012.01.17 |
jQuery 유용한 링크 모음 (0) | 2012.01.13 |