我想在jQuery中创建一个计时器,我想像这样每秒更改一次span的值,但它的延迟不起作用。

 function startTimer(daysRemain,hoursRemain,minutesRemain,secondsRemain){

            while(secondsRemain < 60){
               secondsRemain++;
               $("span.secondRemain").delay(1000).text(secondsRemain);  //change value of seconds each one second
                // I try this way too!
               /* setTimeout(function(){
                    $("span.secondRemain").text(secondsRemain);
                },1000);*/

            }

最佳答案

delay仅用于fx队列。

标准计时器如下

var t = 0;
setInterval(function () {
    $('div').text(t);
    t += 1;
},1000);


http://jsfiddle.net/J9Zwa/

07-24 09:31