JavaScript实现当分钟和秒小于10的情况,前面补0显示

快!!急急急急!!!
2025-04-06 01:57:14
推荐回答(3个)
回答1:

var s=1 , m=2;
// 根据长度来判断
var strS=s.toString() , strM=m.toString();
if(strS.length<2)
    strS='0'+strS;
if(strM.length<2)
    strM='0'+strM;

回答2:

const getUTCTime = () => {
    const _toFixed = (_num, _length) => {
        const _fixLen = (parseInt(_length) || 2) - (_num + '').length;
        const _fixStr = _fixLen > 0 ? (0).toFixed(_fixLen - 1).replace('.', '') : '';

        return _fixStr + _num;
    };
    const now = new Date();
    const { year, month, day, hour, minute, seconds, milliseconds } = {
        year: now.getUTCFullYear(),
        month: _toFixed(now.getUTCMonth() + 1),
        day: _toFixed(now.getUTCDate()),
        hour: _toFixed(now.getUTCHours()),
        minute: _toFixed(now.getUTCMinutes()),
        seconds: _toFixed(now.getUTCSeconds()),
        milliseconds: _toFixed(now.getUTCMilliseconds(), 3),
    };

    return `${year}-${month}-${day}T${hour}:${minute}:${seconds}.${milliseconds}Z`;
};

console.log(getUTCTime());
// 2019-10-30T08:14:09.002Z

那个return的格式可以随便拼,如果不要UTC时间可以把getUTCHours
改成getHours

回答3:

            function toDou(num){
                var num=num+"";
                return num=num.length>1?num : 0+num;
            }