我尝试使用 javascript 计时器创建一个有效性超过 1 分钟,但它不起作用。这是我的代码:function timer(){ var epoch = Math.round(new Date().getTime() / 1000.0); var countDown = 6000 - (epoch % 1000); if (epoch % 6000 == 0) updateOtp(); $('#updatingIn').text(countDown);}$(function () { updateOtp(); $('#secret').keyup(function () { updateOtp(); }); setInterval(timer, 10000);});我的实际目标是在几分钟内倒计时到 20 分钟。
添加回答
举报
0/150
提交
取消