본문 바로가기

jQuery

jQuery In Action chapter 4-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>jQuery 2 이벤트 전파 예제</title>
 <script type="text/javascript" src="../js/jquery-1.2.1.js" ></script>
 <script type="text/javascript">
 $(function () {
  $('*').bind('click', function (event) {
   var current = this;
   say('버블' + current.tagName + '#' + current.id +
     '에서 대상은 ' + event.target.id + '이다.');
  });
 });
 function say (text) {
  $('#console').append('<div>' + text + '</div>');
 }
 </script>
</head>
<body id="greatgrandpa">
 <div id="grandpa">
    <div id="pops">
      <img id="vstar" src="vstar.jpg"/>
    </div>
 </div>
 <div id="console"></div>
</body>
</html>

'jQuery' 카테고리의 다른 글

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