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

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

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

            bottonName = bottonName || 'first';

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

        });


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

提问者:金刚无敌葫芦娃 2020-04-12 22:32

个回答

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

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