본문 바로가기

jQuery

jQuery In Action chapter 1-2

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <title>준비 핸들러 시험</title>
 <script type="text/javascript" src="../js/jquery-1.2.1.js"></script>
 <script type="text/javascript">
 window.onload = function () {
  alert("onload 핸들러");
 };
 $(function () {
  alert("준비 핸들러 1");
 });
 $(function () {
  alert("준비 핸들러 2");
 });
 $(function () {
  alert("준비 핸들러 3");
 });
 </script>
</head>
<body>

</body>
</html>

'jQuery' 카테고리의 다른 글

jQuery In Action chapter 1-4  (0) 2009.12.19
jQuery In Action chapter 1-3  (0) 2009.12.19
jQuery In Action chapter1-1  (0) 2009.12.19
jQuery 8  (0) 2009.12.17
객체지향 자바스크립트 2-1  (0) 2009.12.14