update($("span:first"),$("span:last"),bottonName);最后到底获得的什么? function update(first,last,bottonName) {里面的first,last指的什么呢?

来源:7-1 jQuery自定义事件之trigger事件

你好小妖精

2017-11-11 18:59

    <script type="text/javascript">

    //点击更新次数

    $("button:first").click(function(event,bottonName) {

        bottonName = bottonName || 'first';

        update($("span:first"),$("span:last"),bottonName);

    });

    //通过自定义事件调用,更新次数

    $("button:last").click(function() {

        $("button:first").trigger('click','last');

    });

    function update(first,last,bottonName) {

        first.text(bottonName);

        var n = parseInt(last.text(), 10);

        last.text(n + 1);

    }

    </script>

写回答 关注

0回答

还没有人回答问题,可以看看其他问题

jQuery基础(三)—事件篇

jQuery第三阶段开启事件修炼,掌握对页面进行交互的操作

89997 学习 · 625 问题

查看课程

相似问题