gpt4 book ai didi

javascript - 使用 javascript 添加第二个日期时间

转载 作者:行者123 更新时间:2023-12-03 10:04:45 24 4
gpt4 key购买 nike

如何在 Javascript 中向以下格式的日期添加秒?

x = '2015-05-23 11:20:33';

setInterval(function () {
console.log(x+1); //Looking something in this place to add a second and show in the same format
}, 1000);

最佳答案

使用setSeconds()

var date = new Date('2015-05-23 11:20:33');

setInterval(function () {
date.setSeconds(date.getSeconds() + 1);
console.log(
date.getFullYear()+'-'+
(date.getMonth()+1)+'-'+
date.getDate()+' '+
date.getHours()+':'+
date.getMinutes()+':'+
date.getSeconds()
);//to ensure log is 'YYYY-MM-DD HH:MM:SS' format
}, 1000);

参见Add 10 seconds to a Javascript date object timeObject

关于javascript - 使用 javascript 添加第二个日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30412287/

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