把update函数注释掉怎么还可以增加点击次数?
把update函数注释掉怎么还可以增加点击次数
$("button:first").click(function(event,buttonName){
buttonName=buttonName||"first";
update($("span:first"),$("span:last"),buttonName);
});
$("button:last").click(function(){
$("button:first").trigger('click','last');
})
// function update(first,last,buttonName){
// first.text(buttonName);
// var n=parseInt(last.text(),10);
// last.text(n+1);
// }
</script>