click事件(function(event, bottonName)里面的bottonName参数和updata函数里面的bottonName参数有关系吗?

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

金刚无敌葫芦娃

2020-04-12 22:32

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

            bottonName = bottonName || 'first';

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

        });


这里面的每一行的bottonName是指什么?

写回答 关注

1回答

  • 慕村3206165
    2020-04-28 16:00:37

    bottonName是形参,从function(event,bottonName) 传递到 update($("span:first"), $("span:last"), bottonName);

jQuery基础(三)—事件篇

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

89997 学习 · 625 问题

查看课程

相似问题