본문 바로가기

jQuery

jQuery In Action chapter 4-4

<!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>
 <link rel="stylesheet" type="text/css" href="hover.css">
 <script type="text/javascript" src="../js/jquery-1.2.1.js" ></script>
 <script type="text/javascript">
 function report (event) {
  $('#console').append('<div>' + event.type + '</div>');
 }
 $(function () {
  $('#outer1')
   .bind('mouseover', report)
   .bind('mouseout', report);
  // hover(overListener, outListener)
  $('#outer2').hover(report, report);
 });
 </script>
</head>
<body>
 <div class="outer" id="outer1">
  외부1
  <div class="inner" id="inner1">
   내부1
  </div>
 </div>
 <div class="outer" id="outer2">
  외부2
  <div class="inner" id="inner2">
   내부2
  </div>
 </div>
 <div id="console"></div>
</body>
</html>

'jQuery' 카테고리의 다른 글

jQuery In Action chapter 8-1  (0) 2009.12.20
jQuery In Action chapter 4-5  (0) 2009.12.20
jQuery In Action chapter 4-3  (0) 2009.12.20
jQuery In Action chapter 4-2  (0) 2009.12.20
jQuery In Action chapter 4-1  (0) 2009.12.20