首页javascriptbindjQuery Method - 如何使用bind()方法绑定点击事件

jQuery Method - 如何使用bind()方法绑定点击事件

我们想知道如何使用bind()方法绑定点击事件。

<!DOCTYPE html>
<html>
<head>
<script class="jsbin"
  src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<style>
article, aside, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
</style>
</head>
<body>
  <p id="hello">Hello World</p>
  <hr />
  <div class="log"></div>
  <script>
$(document).ready( function() {
  $("#hello").bind("click", function() {
    $(".log").append("click 1<br/>");
  });
  $("#hello").bind("click", function() {
   $(".log").append("click 2<br/>");
  });
});
</script>
</body>
</html>