SoFunction
Updated on 2025-04-03

JS achieves countdown effect (less than 10 to make up for zeros)

Without further ado, please see the code:

function checkTime(i) {
          if (i<10) {
            i = "0" +i;
          }
          return i;
        };
    function GetRTime(t){
            h=(t/60/60);
            m=(t/60%60);
            s=(t%60);
        d = checkTime(d);
            h = checkTime(h);
            m = checkTime(m);
            s = checkTime(s); 
            $(".hours").val(h);
            $(".minutes").val(m);
            $(".seconds").val(s);
            $(".dot").html(":");
        }

The above is all the content of this article. I hope that the content of this article will help you study or work. I also hope to support me more!