bind "mouseenter mouseleave" : bind « jQuery « JavaScript Tutorial






<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
        

                $("div").bind("mouseenter mouseleave", function(e){
                  var str = "( " + e.pageX + ", " + e.pageY + " )";
                  alert( str);
                });

               


        });
    </script>
<style>

  div { width:50px; height:70px; float:left; margin:5px;
        background:rgb(255,140,0); cursor:pointer; }
  
</style>
  </head>
  <body>
    <body>
          <div>asdf</div>

                 
    </body>
</html>








30.20.bind
30.20.1.Bind click event to header
30.20.2.Bind more than one event actions
30.20.3.bind(type, data, fn)
30.20.4.bind "dblclick"
30.20.5.bind "mouseenter mouseleave"
30.20.6.To cancel a default action and prevent it from bubbling up, return false: