js Intl.DateTimeFormat() 格式化时间利器

2023-12-14 16:51:23

效果

在这里插入图片描述

案例

const options = { year: 'numeric', month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit', hour12: false };
const now = new Intl.DateTimeFormat('zh', options).format(new Date()).replace(/[/]/g,"-")
console.log("当前时间", now);

配置项:

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat#parameters

文章来源:https://blog.csdn.net/qq_42618566/article/details/134997254
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。