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

效果

案例

1
2
3
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


js Intl.DateTimeFormat() 格式化时间利器
https://github.com/chergn/chergn.github.io/3a330ca14cf3/
作者
全易
发布于
2024年3月28日
许可协议