$("button:first").click(function(event,bottonName) { bottonName = bottonName || 'first'; update($("span:first"),$("span:last"),bottonName); });
如题
个人理解是这样的,如果bottonName未定义,则取‘first’
update($("span:first"),$("span:last"),bottonName); 是什么意思