具有自动重启功能的Javascript倒计时时钟

发布于 2024-11-01 06:41:03 字数 93 浏览 1 评论 0原文

我需要的是一个 javascript 倒计时时钟,每天早上 7:40 开始,下午 2:15 结束。但是当它在下午 2:15 结束时,我需要它在早上 7:40 自动重新启动。

What i need is a javascript countdown clock that will start everyday at 7:40am and end at 2:15pm. But when it ends at 2:15pm i need it to auto restart at 7:40 am.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你而言 2024-11-08 06:41:03
<script type="text/javascript" src="jquery.js"></script>

// 6 hours and 45 minutes
iMilliseconds = 6 * 60 * 60 * 1000 + 45 * 60 * 1000;

function Restart()
{
 Start();
 setTimeout(iMilliseconds, Restart);
}


function Start()
{
 // Do things
}

$(document).ready(function()
 {
 Restart(); 
});
<script type="text/javascript" src="jquery.js"></script>

// 6 hours and 45 minutes
iMilliseconds = 6 * 60 * 60 * 1000 + 45 * 60 * 1000;

function Restart()
{
 Start();
 setTimeout(iMilliseconds, Restart);
}


function Start()
{
 // Do things
}

$(document).ready(function()
 {
 Restart(); 
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文