gpt4 book ai didi

javascript - 格式化时间hh :mm:ss

转载 作者:行者123 更新时间:2023-12-03 09:43:50 24 4
gpt4 key购买 nike

如何按时设置格式?它显示 16:9:2它应该显示 16:09:02

我的代码:

setInterval(function _timer() {

var time = new Date();
var h = time.getHours();
var m = time.getMinutes();
var s = time.getSeconds();
var fullTime = h + ":" + m + ":" + s;
fullTime.format("hh-MM-ss");// this is not working
$("#time").html(fullTime);

1000

});

最佳答案

你可以这样试试:

var time = new Date();
var h = time.getHours();
var m = time.getMinutes();
var s = time.getSeconds();
alert(
("0" + h).slice(-2) + ":" +
("0" + m).slice(-2) + ":" +
("0" + s).slice(-2));

关于javascript - 格式化时间hh :mm:ss,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32697667/

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