gpt4 book ai didi

javascript - 当前时间在 hh :mm:ss tt formate in javascript

转载 作者:行者123 更新时间:2023-11-30 15:50:35 25 4
gpt4 key购买 nike

我目前正在做一个基于网络的任务。我有这种格式的当前时间。

hh:mm:ss

        var currentdate = new Date(); 
var datetime =
currentdate.getHours() + ":"
+ currentdate.getMinutes() + ":"
+ currentdate.getSeconds();

document.write(datetime);

如何以这种格式获取当前时间:

hh:mm:ss tt

tt 是毫秒。 [即 09:46:17 89]

最佳答案

做这样的事情:

var date = new Date();

var milliSeconds = date.getMilliseconds();

关于javascript - 当前时间在 hh :mm:ss tt formate in javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39410231/

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