有什么方法可以倒计时 60 秒...这是计时器的代码:
var count = 0;
var timer = $.timer(function() {
$('#counter').html(++count);
});
timer.set({ time : 1000, autostart : true });
我需要做什么才能使这个代码像倒计时>谢谢
有什么方法可以倒计时 60 秒...这是计时器的代码:
var count = 0;
var timer = $.timer(function() {
$('#counter').html(++count);
});
timer.set({ time : 1000, autostart : true });
我需要做什么才能使这个代码像倒计时>谢谢
从 0 到 60 计数。
var count = 0, timer = setInterval(function() {
$("#counter").html((count++)+1);
if(count == 59) clearInterval(timer);
}, 1000);
或从 60 到 0:
var count = 60, timer = setInterval(function() {
$("#counter").html(count--);
if(count == 1) clearInterval(timer);
}, 1000);
var timer;
var count = 60;
$("#counter").text(count);
//update display
timer = setTimeout(update, 1000);
//this allows for 'clearTimeout' if needed
function update()
{
if (count > 0)
{
$("#counter").text(--count);
timer = setTimeout(update, 1000);
}
else
{
alert("Done!!!");
}
}
var count = 60;
var timer = $.timer(function() {
$('#counter').html(--count);
});
timer.set({ time : 1000, autostart : true });