效果
案例
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