问题标签 [countdownevent]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
166 浏览

java - 使用倒数计时器循环 [自动重启]

您好,我有一个计时器,我想在它结束后立即连续重新启动 4 次。

我想使用这样的 for 循环: for(int i = 0; i<=3; i++)

我的问题是,我不知道如何在我的代码中使用循环。我不知道在哪里添加 i 变量。

(我还添加了一个媒体播放器,它可以多次播放音频。您可能会注意到,我使用了 2 个 cntdowntimer。它是一个以 30 秒开始的间隔定时器,自动切换到开始 15 秒的第二个定时器,之后程序应该像我之前说的那样重新开始)

以下是我使用的方法:

提前致谢。:)

完整代码:

0 投票
2 回答
1799 浏览

javascript - 我想设置倒计时时间并保持最后期限减少php

抱歉,我无法正确表达问题。

基本上我需要做的就是这个。

应该有一个显示倒数计时器的 php 页面。假设管理员现在将其设置为 24 小时并开始。谁访问过该页面,它会显示剩余的截止时间。例如,如果用户现在访问,则剩余 24 小时,如果 2 小时后,用户访问,则应该说剩余 22 小时。谢谢你。(任何人都可以编辑它以使其易于理解)。

我希望它不断更新。

0 投票
2 回答
137 浏览

javascript - 如何用 JavaScript 做一个计数器

我正在倒计时,我想用表格来设置。另外,我想存储我发送的数据。

我需要在网站的其他部分调用此计数器,因为我正在为网页管理员执行此操作。

我不确定本地存储或 AJAX 是否是最佳选择,因为我不想只为三个变量添加表。

这是我的问题:哪种方式对我有更好的帮助,或者我如何存储我需要的数据?我错过了什么吗?

这是我的表格:

我的想法是通过邮寄方式传递它,但它并没有像我预期的那样工作,因为每次我调用counter.php它都会向我发送一个“未定义索引:年份”错误。

接下来,我的counter.php

最后,我正在使用这个 JavaScript 来进行倒计时。现在它是静态的;计划是将数据存储在某处,以便我可以将其传递给countDown函数。

0 投票
1 回答
332 浏览

c# - Async wait for multiple threads to finish

I have a code block which is eventually accessed by multiple threads. I search for an up to date async mechanism to continue executing when all threads have passed.

Currently I do the following with a CountDownEvent which works just fine (without async support).

Do I need to use any of those AsyncCountdownEvent implementations or is there any other built-in mechanism? I already thought about using a BufferBlock because it has async functionality but I think it's a bit overkill.

Additional to the comments:

IActivity is a WebService call (but shouldn't effect the implementation on top or vice versa)