$("button:first").click(function(event, bottonName) {
bottonName = bottonName || 'first';
update($("span:first"), $("span:last"), bottonName);
});
这里面的每一行的bottonName是指什么?
bottonName是形参,从function(event,bottonName) 传递到 update($("span:first"), $("span:last"), bottonName);