click事件(function(event, bottonName)里面的bottonName参数和updata函数里面的bottonName参数有关系吗?
$("button:first").click(function(event, bottonName) {
bottonName = bottonName || 'first';
update($("span:first"), $("span:last"), bottonName);
});
这里面的每一行的bottonName是指什么?