<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <script src="../jquery-3.5.1.min.js"></script>
  </head>
  <body>
    <button id="btn">点击我</button>
    <div id="test"></div>
    <script>
      $(function () {
        $("#btn")
          .bind("click", function () {
            $("#test").append("<p>我的绑定函数1</p>");
          })
          .bind("click", function () {
            $("#test").append("<p>我的绑定函数2</p>");
          })
          .bind("click", function () {
            $("#test").append("<p>我的绑定函数3</p>");
          });
        $("#btn").trigger("click");// 还未点击的时候先让他执行一遍
      });
    </script>
  </body>
</html>

 

posted on 2020-09-02 08:27  颉旺飞  阅读(177)  评论(0编辑  收藏  举报