首页javascriptbindjQuery Method - 如何使用bind()绑定点击事件到标题

jQuery Method - 如何使用bind()绑定点击事件到标题

我们想知道如何使用bind()绑定点击事件到标题。


<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
        $(document).ready(function(){
             $("h1").bind("click", function(e){
                 var str = "( " + e.pageX + ", " + e.pageY + " )";
                 $("h1").text("Click happened! " + str);
             });
        });
    </script>
  </head>
  <body>
    <body>
       <div><h1>header 1</h1></div>
    </body>
</html>