gpt4 book ai didi

jQuery 倒计时插件重新启动

转载 作者:行者123 更新时间:2023-12-01 01:02:26 25 4
gpt4 key购买 nike

我正在使用 jQuery 倒计时插件 ( http://keith-wood.name/countdown.html ),但我似乎无法重置计时器。

单击按钮时,以下函数将开始倒计时:

function startResetCounter() {
$('.reset_counter div').countdown({
until: '+3m +0s',
compact: true,
format: 'MS',
onExpiry: resetPage
});
}

但是当我重新单击按钮时,它不会重置计时器。

谁能帮帮我?

最佳答案

startResetCounter 函数顶部添加以下行:

$('.reset_counter div').countdown('destroy'); //remove countdown if it was already used

所以最后你会得到:

function startResetCounter() {
$('.reset_counter div').countdown('destroy');

$('.reset_counter div').countdown({
until: '+3m +0s',
compact: true,
format: 'MS',
onExpiry: resetPage
});
}

关于jQuery 倒计时插件重新启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12602641/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com