日期格式时间格式通length属性处理日期时间补零(0〇)操作
Posted web半晨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了日期格式时间格式通length属性处理日期时间补零(0〇)操作相关的知识,希望对你有一定的参考价值。
// String()和toString()的原因是:数字类型的数据没有length属性
let dateTime = new Date(),
yer = dateTime.getFullYear(),
moth = String(dateTime.getMonth() + 1),
day = dateTime.getDate().toString(),
house = dateTime.getHours().toString(),
minute = dateTime.getMinutes().toString(),
second = dateTime.getSeconds().toString();
console.log(yer);
console.log(('00' + moth).slice(moth.length));
console.log(('00' + day).slice(day.length));
console.log(('00' + house).slice(house.length));
console.log(('00' + minute).slice(minute.length));
console.log(('00' + second).slice(second.length));
以上是关于日期格式时间格式通length属性处理日期时间补零(0〇)操作的主要内容,如果未能解决你的问题,请参考以下文章