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

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

o缘来是你o

2017-03-03 14:43

 //点击更新次数

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

        bottonName = bottonName || 'first';

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

    });


写回答 关注

2回答

  • 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);

        }


jQuery基础(三)—事件篇

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

89997 学习 · 625 问题

查看课程

相似问题