gpt4 book ai didi

Javascript - 时间返回属性

转载 作者:行者123 更新时间:2023-12-03 11:05:34 24 4
gpt4 key购买 nike

我有以下 JavaScript 代码,但没能成功获得小时、分钟和秒的返回属性。

如果有人能给我一些指导,我将不胜感激。

 function XMASClock(){

var today = new Date();
var h = today.getHours();
var m = today.getMinutes();
var s = today.getSeconds();
return [ h, m, s ].join(':')

alert(today);
}

问候克里斯

最佳答案

function XMASClock(){

var today = new Date(),
h = today.getHours(),
m = today.getMinutes(),
s = today.getSeconds(); /*variable declaration*/

today = [ h, m, s ].join(':'); /*pass the new value of today */

alert(today); /*this is what you are looking for*/

return today


}

XMASClock();

关于Javascript - 时间返回属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27873951/

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