javascript 倒计时是一种显示指定时间剩余时间的脚本,常用在促销活动、游戏和预售等场景。编写步骤:创建 html 元素,包含标题和倒计时;编写 javascript 函数,设置倒计时截止时间,计算剩余时间并将其转换为天、时、分、秒,然后更新倒计时容器;持续更新倒计时,直到截止时间,并在 html 页面中链接 javascript 文件。
如何编写 JavaScript 倒计时
JavaScript 中的倒计时是一种在网页上显示某一指定时间剩余时间的脚本。它广泛用于各种应用程序,例如:
编写步骤:
1. 创建 HTML 结构:
<div id="countdown-container"> <h1>倒计时</h1> <p id="countdown"></p> </div>
创建一个包含标题和倒计时的 HTML 元素。
2. 编写 JavaScript 函数:
// 设置倒计时截止时间 const targetDate = new Date('2023-12-31T23:59:59'); // 修改为你想要的时间 // 获取倒计时容器 const countdownContainer = document.getElementById('countdown-container'); // 更新倒计时 const updateCountdown = () => { // 计算剩余时间 const now = new Date(); const remainingTime = targetDate - now; // 转换剩余时间为天、时、分、秒 const days = Math.floor(remainingTime / (1000 * 60 * 60 * 24)); const hours = Math.floor((remainingTime % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); const minutes = Math.floor((remainingTime % (1000 * 60 * 60)) / (1000 * 60)); const seconds = Math.floor((remainingTime % (1000 * 60)) / 1000); // 将倒计时显示在容器中 countdownContainer.innerHTML = ` <h1>倒计时</h1> <p> ${days} 天 ${hours} 小时 ${minutes} 分钟 ${seconds} 秒 </p> `; // 持续更新倒计时,直到截止时间 if (remainingTime > 0) { setTimeout(updateCountdown, 1000); } }; // 开始倒计时 updateCountdown();
3. 将 JavaScript 链接到 HTML:
<script src="script.js"></script>
将你的 JavaScript 文件链接到 HTML 页面中。
运行结果:
当你打开网页时,它将显示剩余时间,直到指定的时间截止。随着时间的推移,倒计时将自动更新。