我不明白为什么每次单击“开始”时此脚本都会导致计数器加速。我需要插入什么来防止这种情况发生?
var count = 1;
var counting = function () {
timer = setInterval(function () {
$('#numbers').html(count);
count++;
}, 1000);
function counting() {};
}
$("#start").click(counting);
$('#stop').click(function () {
clearTimeout(timer);
});
$('#reset').click(function () {
count = 0;
$('#numbers').html(count);
});