Javascript倒计时计时器倒计时不正确更新秒/分钟

时间:2015-04-07 02:20:30

标签: javascript countdowntimer

我创建了一个倒数计时器。但是,它没有正确倒计时。它不是每秒或每分钟倒计时,而是由hundreths倒计时,并且不能正确更新。我使用相同的代码创建了另一个计数计时器,但它可以正常计算每个增量计数 - 它每隔60秒计算几分钟。我想知道如何才能使这个计时器正常倒计时。

JSBin: http://jsbin.com/funiveremi/6/edit

更新*添加60秒计数器: http://jsbin.com/hohusuvube/2/edit

HTML

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>User Input Timer</title>
  <script type="text/javascript" src="part2.js"></script>
</head>
<body>

<h1><div id="time">00:00:00</div></h1>
<div id="result"></div>
<button id="start" onclick ="startClock();" >Start</button>
<button id="stop" onclick="stopTimer();">Stop</button>
<button id="clear" onclick="resetTimer();">Reset</button>

</body>
</html>

javascipt的

hundreths = 10;
seconds = 15;
minutes = 20; 


document.getElementById("time").innerHTML = minutes + ":" + seconds + ":" + hundreths;


var currentTime = document.getElementById('time');

var t;

function startClock() {
function add() {

    hundreths--;
    if (hundreths < 0) {
        hundreths = 0;
        seconds--;
        if (seconds < 0) {
            seconds = 0;
            minutes--;
        }
        if(minutes < 0) {
            seconds= 0;
            minutes= 0;
            stopTimer();

        }
    }



if (hundreths > 9 && seconds < 9) {
currentTime.innerHTML = "0" + minutes + ":" + "0" + seconds + ":" + hundreths;
  }
else if ((seconds > 9 ) && (hundreths < 9)) {
currentTime.innerHTML = "0" + minutes + ":" + seconds + ":" + "0" + hundreths;
}
else if((seconds > 9) && (hundreths > 9)) {
currentTime.innerHTML = "0" + minutes + ":" + seconds + ":" + hundreths;
}
else if ((minutes > 9) && (seconds < 9) && (hundreths < 9)) {
currentTime.innerHTML = minutes + ":" + "0" + seconds + ":" + "0" + hundreths;
}

else if ((minutes > 9) && (seconds > 9) && (hundreths < 9)) {
currentTime.innerHTML = minutes + ":" + seconds + ":" + "0" + hundreths;
}

else if ((minutes > 9) && (seconds > 9) && (hundreths < 9)) {
currentTime.innerHTML = minutes + ":" + seconds + ":" + hundreths;
}

else {
currentTime.innerHTML = "0" + minutes + ":" + "0" + seconds + ":" + "0" + hundreths;
}

   timer();
} // end function add();


function timer() {
    t = setTimeout(add, 100);
}
timer();
} // end function startClock();

function stopTimer() {
    document.getElementById("result").innerHTML = "<p>" + ("Your time is: " + minutes + " minutes, " + seconds + " seconds, " + "and " + hundreths + " hundreths") + "</p>";
    clearTimeout(t);
} // end function stopTimer();


function resetTimer() {
clearTimeout(t);

  currentTime.innerHTML = "00:00:00";
} // end function resetTimer();

2 个答案:

答案 0 :(得分:0)

只需使用Jquery Countdown插件。

http://hilios.github.io/jQuery.countdown/

实施将更容易。像这样的东西。

<div id="getting-started"></div>
<script type="text/javascript">
  $("#getting-started").countdown("2016/01/01", function(event) {
    $(this).text(event.strftime('%D days %H:%M:%S'));
  });
</script>

答案 1 :(得分:0)

这将有效,你有关于何时设置秒不正确的逻辑,所以它不断重置自己。如果您遇到困难,最好在这些情况下做的事情之一就是简单地尝试更改if语句,删除其中一些并使用不同的值。它可以帮助您了解系统中真正发生的事情,并为您提供有关错误的线索。另一个提示就是用普通英语大声朗读代码。当你大声朗读时,你会经常听到自己说出逻辑,从而意识到你犯了错误。

    hundreths--;
    if (hundreths < 0) {
        hundreths = 10;
        seconds--;
        if (seconds < 0) {
            seconds = 59;
            minutes--;
        }
        if(minutes < 0) {
            seconds= 0;
            minutes= 0;
            stopTimer();

        }
    }