gpt4 book ai didi

javascript - 如何不使用 toLocaleString 显示秒数

转载 作者:行者123 更新时间:2023-12-03 07:11:27 26 4
gpt4 key购买 nike

https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString说:

second The representation of the second. Possible values are "numeric", "2-digit".



“数字”和“2位”之间有什么区别?我用什么来几秒钟内什么都不显示?我省略了 second选项,它仍然出现。

最佳答案

2 位是 0 填充,而数字不是。不指定秒数(未定义)是您省略它们的方式。但是,您确实需要指定小时和秒。就像是:

var date = new Date();
var options = { hour: 'numeric', minute: '2-digit' };
console.log(date.toLocaleString('en-US', options));

关于javascript - 如何不使用 toLocaleString 显示秒数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44760838/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com