页面刷新时不会重新开始的(javascript)倒计时?

发布于 2024-10-18 00:39:19 字数 100 浏览 2 评论 0原文

我想知道是否有任何解决方案可以实现 JavaScript 计数器,该计数器不会在页面刷新时重置,但会继续计数,直到设定的时间过去。

你对此了解多少?

谢谢

i was wondering if there is any solution for implementing a javascript counter that doesn't reset at page refreshm but it continues counting until the set time passes.

What do you know about it?

thank you

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

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

发布评论

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

评论(3

昨迟人 2024-10-25 00:39:19

您可以将当前倒数计时器计数存储在 cookie 中(每次计时器更改时您都会这样做)。然后,当页面加载(或刷新)时,首先检查该 cookie 的值,如果已设置,则使用该值作为倒数计数器的起点。

You could store the current countdown timer count in a cookie (you would do that every time the timer changes). And then when the page loads (or refreshes) check for the value of that cookie first, and if it is set use that value as the starting point of the countdown counter.

怕倦 2024-10-25 00:39:19

您需要将其状态存储在某个地方,无论是在 cookie 中还是在服务器端。

在每次页面加载时,代码都需要检查其状态并相应地调整其倒计时。

You will need to store its state somewhere, either in a cookie or serverside.

On each page load, the code will need to check its state and adjust its countdown accordingly.

无戏配角 2024-10-25 00:39:19

您可以使用 localStorage 或 cookie 来存储您当前的计数器值。
这是一个示例: http://jsfiddle.net/ArtBIT/KsYE4/

You can use localStorage or cookies to store your current counter value.
Here's an example: http://jsfiddle.net/ArtBIT/KsYE4/

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