如果bottonName = bottonName,那代表什么,如果bottonName = first又是代表什么?trigger('click','last'),这个last代表什么? first.text(bottonName);这一句怎么理解?
$("bu tton:first").click(function(event,bottonName) {
bottonName = bottonName|| 'first';
update($("span:first"),$("span:last"),bottonName);
});
//通过自定义事件调用,更新次数
$("button:last").click(function() {
$("button:first").trigger('click','last');
});
function update(first,last,bottonName) {
first.text(bottonName);
var n = parseInt(last.text(), 10);
last.text(n + 1);
}