可以使用JavaScript中的setInterval方法來實現倒計時功能。以下是一個示例代碼:
// 設置倒計時時間為10秒
let countdownTime = 10;
// 獲取顯示倒計時的元素
let countdownElement = document.getElementById('countdown');
// 更新倒計時顯示的函數
function updateCountdown() {
countdownElement.textContent = countdownTime;
countdownTime--;
if (countdownTime < 0) {
clearInterval(intervalId); // 清除定時器
countdownElement.textContent = '倒計時結束';
}
}
// 每秒更新一次倒計時顯示
let intervalId = setInterval(updateCountdown, 1000);
在上面的示例中,我們定義了一個變量countdownTime
來表示倒計時的時間,然后使用setInterval
方法每秒調用一次updateCountdown
函數來更新倒計時顯示。當倒計時結束后,清除定時器并顯示倒計時結束的信息。