'Find all children of the clicked element.'에 해당되는 글 1건

  1. 2010.02.19 Find all children of the clicked element.
반응형
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
               
               $("#container").click(function (e) {
               
                  var $kids = $(e.target).children();
                  alert($kids.length);
           
           
                  e.preventDefault();
                  return false;
                });
                   

        });
    </script>
  </head>
  <body>
    <body>
        <div id="container">
        <div>
          asdf
        </div>
        </div>
         
    </body>
</html>

Posted by 1010