问答详情
源自:7-1 jQuery自定义事件之trigger事件

这里面的 updata 是什么意思? 求大神帮下忙 解释下!o(╯□╰)o

 //点击更新次数

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

        bottonName = bottonName || 'first';

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

    });


提问者:o缘来是你o 2017-03-03 14:43

个回答

  • LioHD
    2017-03-17 17:34:30

    自定义的函数,传三个值过来,函数内实现 点击次数的增加

  • 慕粉3768521
    2017-03-03 18:00:32

    function update(first,last,bottonName) {

            first.text(bottonName);

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

            last.text(n + 1);

        }