首頁 >web前端 >js教程 >如何用 JavaScript 建立一個簡單的 5 分鐘倒數計時器?

如何用 JavaScript 建立一個簡單的 5 分鐘倒數計時器?

Barbara Streisand
Barbara Streisand原創
2024-12-05 12:04:10386瀏覽

How to Create a Simple 5-Minute Countdown Timer in JavaScript?

用JavaScript 建立一個基本的倒數計時器

問題:

問題:

尋求一個簡單的JavaScript 解決方案實作一個倒數計時器,顯示「註冊將於05:00 結束分鐘! ”並倒數到“00:00”,然後重置為“05:00”。

解決方案:

為了避免日期函數,我們提出兩種方法:

function startTimer(duration, display) {
    var timer = duration, minutes, seconds;
    setInterval(function () {
        minutes = parseInt(timer / 60, 10);
        seconds = parseInt(timer % 60, 10);

        minutes = minutes < 10 ? "0" + minutes : minutes;
        seconds = seconds < 10 ? "0" + seconds : seconds;

        display.textContent = minutes + ":" + seconds;

        if (--timer < 0) {
            timer = duration;
        }
    }, 1000);
}

window.onload = function () {
    var fiveMinutes = 60 * 5,
        display = document.querySelector('#time');
    startTimer(fiveMinutes, display);
};

香草JavaScript

<body>
    <div>Registration closes in <span>
HTML:

以上是如何用 JavaScript 建立一個簡單的 5 分鐘倒數計時器?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn