티스토리 뷰
자바스크립트의 window.onload 이벤트를 대신할 수 있는 이벤트 처리기 메서드이다.
DOM이 완전히 로드된 후 DOM 조작 및 탐색을 처리할 때 사용한다.
사용방법은 다음과 같다.
<!DOCTYPE html>
<html>
<head>
<style>p { color:red; }</style>
<script src="http://code.jquery.com/jquery-1.4.4.js"></script>
<script>
$(document).ready(function () {
$("p").text("The DOM is now loaded and can be manipulated.");
});
</script>
</head>
<body>
<p>Not loaded yet.</p>
</body>
</html>
'jQuery' 카테고리의 다른 글
.trigger() (0) | 2010.12.27 |
---|---|
.bind() (0) | 2010.12.27 |
event.pageX + event.pageY (0) | 2010.12.27 |
load() 이벤트 처리기 메서드 (0) | 2010.12.26 |
jQuery + json (0) | 2010.12.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크