问答详情
源自:8-4 取消计时器clearInterval()

时间显示设置

我想问如何能将时分秒每个固定成两位显示,例如05:30:3显示为05:30:03

提问者:尊王随风5 2017-06-01 17:49

个回答

  • 俗喜
    2017-06-01 21:11:11
    已采纳

    添加一个判断条件

    function double(seconds){

    if(seconds<10){

        return"0"+seconds;

       }

       else{

    return +seconds;

    }  

    }